Skip to content

Commit 1125f0d

Browse files
committed
enable tests
1 parent b105f14 commit 1125f0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
include:
2626
# Test recent Python on Astroid v2 and v3 too (the above natural tests will
2727
# pick up the latest Astroid version for these Python versions)
28+
- python-version: '3.14'
2829
- python-version: '3.9'
2930
astroid-version: '<3'
3031
- python-version: '3.10'
@@ -41,7 +42,6 @@ jobs:
4142
astroid-version: '<4'
4243
- python-version: '3.12'
4344
astroid-version: '<4'
44-
- python-version: '3.14'
4545

4646
env:
4747
COVERALLS_PARALLEL: true

tests/test_mark_tokens.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ def test_complex_slice_and_parens(self):
671671
source = 'f((x)[:, 0])'
672672
self.create_mark_checker(source)
673673

674-
@pytest.mark.skipif(sys.version_info >= (3, 14), reason = 'modules test yet working on 3.14')
674+
# @pytest.mark.skipif(sys.version_info >= (3, 14), reason = 'modules test yet working on 3.14')
675675
@pytest.mark.slow
676676
def test_sys_modules(self):
677677
"""

0 commit comments

Comments
 (0)