Skip to content

Commit 730ef99

Browse files
authored
Rename type-checking directory to type_checking (#160)
1 parent d77f3f6 commit 730ef99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646

4747
# Tests
4848
- 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
5050
- name: Run tests (type checking)
5151
if: matrix.python != '3.8' && matrix.python != '3.9'
5252
# These started breaking for <= 3.9, due to the type checker using a
5353
# '|' for unions rather than 'Union[...]', so it's not possible to run
5454
# the tests without maintaining two duplicate files (one for <= 3.9 and
5555
# one for > 3.9)
56-
run: pytest tests/type-checking/test_result.yml
56+
run: pytest tests/type_checking/test_result.yml
5757
- name: Run tests (pattern matching)
5858
if: matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == '3.12'
5959
run: pytest tests/test_pattern_matching.py
File renamed without changes.

0 commit comments

Comments
 (0)