Skip to content

Commit f4d2086

Browse files
Fixes Makefile for unit test
1 parent 803d237 commit f4d2086

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/code_checks.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
pdm venv create --with-pip --force $PYTHON
5555
pdm sync --dev -G:all
5656
- run: |
57-
pdm run make test
57+
pdm run make test-unit

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ lint: ## check style with flake8
5353
lint-complexity: ## check cyclomatic complexity with flake8 + mccabe
5454
tox -e lint-complexity
5555

56-
test: ## run tests quickly with the default Python
57-
pdm run pytest
56+
test-unit: ## run tests quickly with the default Python
57+
pdm run pytest tests/unit
5858

5959
test-all: ## run tests on every Python version with tox
6060
tox

0 commit comments

Comments
 (0)