Skip to content

Commit

Permalink
Fixes Makefile for unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallmcdonnell committed Aug 16, 2024
1 parent 0d88e2b commit 8cae8bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ jobs:
pdm venv create --with-pip --force $PYTHON
pdm sync --dev -G:all
- run: |
pdm run make test
pdm run make test-unit
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ lint: ## check style with flake8
lint-complexity: ## check cyclomatic complexity with flake8 + mccabe
tox -e lint-complexity

test: ## run tests quickly with the default Python
pdm run pytest
test-unit: ## run tests quickly with the default Python
pdm run pytest tests/unit

test-all: ## run tests on every Python version with tox
tox
Expand Down

0 comments on commit 8cae8bd

Please sign in to comment.