File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,4 +28,4 @@ recursive-include src/ py.typed
28
28
# Include test configuration
29
29
include test/conftest.py
30
30
31
- prune .venv
31
+ prune .venv
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ black-fix: $(MARKER_REQUIREMENTS_SYNCED_DEVTIME)
179
179
.PHONY : mypy
180
180
mypy : # Run mypy type-checker
181
181
mypy : $(MARKER_REQUIREMENTS_SYNCED_DEVTIME )
182
- $(PY_IN_VENV_EXE ) -m mypy --config-file setup.cfg $( package_dir )
182
+ $(PY_IN_VENV_EXE ) -m mypy --config-file setup.cfg --namespace-packages -p $( package )
183
183
184
184
185
185
# ==================== Building ====================
@@ -193,7 +193,7 @@ build: $(MARKER_REQUIREMENTS_SYNCED_DEVTIME)
193
193
194
194
.PHONY : test
195
195
test : $(MARKER_REQUIREMENTS_SYNCED_DEVTIME )
196
- $(PY_IN_VENV_EXE ) -m pytest --cov=. --cov-fail-under=$(coverage_percent ) --cov-config=setup.cfg --cov-report=xml:coverage.xml --cov-report=term-missing --cov-branch $(package_dir ) $(test_dir )
196
+ $(PY_IN_VENV_EXE ) -m pytest --cov=src --cov-fail-under=$(coverage_percent ) --cov-config=setup.cfg --cov-report=xml:coverage.xml --cov-report=term-missing --cov-branch $(package_dir ) $(test_dir )
197
197
198
198
199
199
# ==================== Publishing ====================
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ pytest-cov
15
15
twine
16
16
17
17
# self
18
- -e .
18
+ -e .
You can’t perform that action at this time.
0 commit comments