Skip to content

Commit

Permalink
Rename mypytest to typingtest
Browse files Browse the repository at this point in the history
  • Loading branch information
153957 committed Jul 4, 2023
1 parent 646da3d commit a04d177
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
RUFF_FORMAT: github

mypytest:
typingtest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -28,7 +28,7 @@ jobs:
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: make devinstall
- run: make mypytest
- run: make typingtest

unittest:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ devinstall:
pip install --upgrade --upgrade-strategy eager --editable .[dev]

.PHONY: test
test: rufftest mypytest unittests
test: rufftest typingtest unittests

.PHONY: rufftest
rufftest:
ruff .

.PHONY: mypytest
mypytest:
.PHONY: typingtest
typingtest:
mypy .

.PHONY: unittest
Expand Down

0 comments on commit a04d177

Please sign in to comment.