File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,14 +46,14 @@ jobs:
46
46
47
47
# Tests
48
48
- name : Run tests
49
- run : pytest --ignore=tests/test_pattern_matching.py --ignore=tests/type-checking /test_result.yml
49
+ run : pytest --ignore=tests/test_pattern_matching.py --ignore=tests/type_checking /test_result.yml
50
50
- name : Run tests (type checking)
51
51
if : matrix.python != '3.8' && matrix.python != '3.9'
52
52
# These started breaking for <= 3.9, due to the type checker using a
53
53
# '|' for unions rather than 'Union[...]', so it's not possible to run
54
54
# the tests without maintaining two duplicate files (one for <= 3.9 and
55
55
# one for > 3.9)
56
- run : pytest tests/type-checking /test_result.yml
56
+ run : pytest tests/type_checking /test_result.yml
57
57
- name : Run tests (pattern matching)
58
58
if : matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == '3.12'
59
59
run : pytest tests/test_pattern_matching.py
File renamed without changes.
You can’t perform that action at this time.
0 commit comments