We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803d237 commit f4d2086Copy full SHA for f4d2086
.github/workflows/code_checks.yaml
@@ -54,4 +54,4 @@ jobs:
54
pdm venv create --with-pip --force $PYTHON
55
pdm sync --dev -G:all
56
- run: |
57
- pdm run make test
+ pdm run make test-unit
Makefile
@@ -53,8 +53,8 @@ lint: ## check style with flake8
53
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
58
59
test-all: ## run tests on every Python version with tox
60
tox
0 commit comments