Skip to content

Commit

Permalink
fix tests referring to old file name
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkdl committed Apr 15, 2024
1 parent 859b913 commit f7a3c3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Run pyright verifytypes
run: pyright --verifytypes exceptiongroup --verbose
- name: Run pyright type test
run: pyright tests/type_test.py
run: pyright tests/check_types.py
- name: Run mypy type test
run: mypy tests/type_test.py
run: mypy tests/check_types.py

test:
strategy:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Expand Up @@ -98,13 +98,13 @@ extras = test
commands = python -m pytest {posargs}
usedevelop = true
[testenv:{py37-,py38-,py39-,py310-,py311-,py312-,}pyright]
[testenv:{py37-,py38-,py39-,py310-,py311-,py312-,}typing]
deps =
pyright
mypy
commands =
pyright --verifytypes exceptiongroup
pyright tests/type_test.py
mypy tests/type_test.py
pyright tests/check_types.py
mypy tests/check_types.py
usedevelop = true
"""

0 comments on commit f7a3c3c

Please sign in to comment.