Skip to content

Commit 0ada5a7

Browse files
authored
Skip scspell tests on Python 3.13+ (#677)
At this time, scspell is not available for Python 3.13 due to the removal of lib2to3. Until we have another solution, we should skip scspell on Python 3.13 so that we can add that version to the CI matrix as soon as possible.
1 parent fc1cae5 commit 0ada5a7

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ test =
5959
pylint
6060
pytest
6161
pytest-cov
62-
scspell3k>=2.2
62+
scspell3k>=2.2; python_version < "3.13"
6363

6464
[options.packages.find]
6565
exclude =

test/test_spell_check.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Licensed under the Apache License, Version 2.0
33

44
from pathlib import Path
5+
import sys
56

67
import pytest
78

@@ -16,9 +17,14 @@ def known_words():
1617

1718
@pytest.mark.linter
1819
def test_spell_check(known_words):
19-
from scspell import Report
20-
from scspell import SCSPELL_BUILTIN_DICT
21-
from scspell import spell_check
20+
try:
21+
from scspell import Report
22+
from scspell import SCSPELL_BUILTIN_DICT
23+
from scspell import spell_check
24+
except ModuleNotFoundError:
25+
if sys.version_info >= (3, 13):
26+
pytest.skip('scspell3k is not available for Python 3.13+')
27+
raise
2228

2329
source_filenames = [
2430
Path(__file__).parents[1] / 'bin' / 'colcon',

0 commit comments

Comments
 (0)