Skip to content

Commit

Permalink
Rename type-checking directory to type_checking (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
francium authored Dec 8, 2023
1 parent d77f3f6 commit 730ef99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:

# Tests
- name: Run tests
run: pytest --ignore=tests/test_pattern_matching.py --ignore=tests/type-checking/test_result.yml
run: pytest --ignore=tests/test_pattern_matching.py --ignore=tests/type_checking/test_result.yml
- name: Run tests (type checking)
if: matrix.python != '3.8' && matrix.python != '3.9'
# These started breaking for <= 3.9, due to the type checker using a
# '|' for unions rather than 'Union[...]', so it's not possible to run
# the tests without maintaining two duplicate files (one for <= 3.9 and
# one for > 3.9)
run: pytest tests/type-checking/test_result.yml
run: pytest tests/type_checking/test_result.yml
- name: Run tests (pattern matching)
if: matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == '3.12'
run: pytest tests/test_pattern_matching.py
Expand Down
File renamed without changes.

0 comments on commit 730ef99

Please sign in to comment.