Skip to content

Commit cedd319

Browse files
committed
build: clean up the Makefile a bit
1 parent d3f46d2 commit cedd319

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

Makefile

+6-9
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,19 @@ LINTABLE = coverage tests igor.py setup.py __main__.py
4949
lint: ## Run linters and checkers.
5050
tox -q -e lint
5151

52-
todo:
53-
-grep -R --include=*.py TODO $(LINTABLE)
54-
55-
pep8:
56-
pycodestyle --filename=*.py --repeat $(LINTABLE)
57-
5852
test:
59-
tox -q -e py35 $(ARGS)
53+
tox -q -e py39 $(ARGS)
6054

6155
PYTEST_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS)
6256

6357
smoke: ## Run tests quickly with the C tracer in the lowest supported Python versions.
64-
COVERAGE_NO_PYTRACER=1 tox -q -e py35 -- $(PYTEST_SMOKE_ARGS)
58+
COVERAGE_NO_PYTRACER=1 tox -q -e py39 -- $(PYTEST_SMOKE_ARGS)
6559

6660
pysmoke: ## Run tests quickly with the Python tracer in the lowest supported Python versions.
67-
COVERAGE_NO_CTRACER=1 tox -q -e py35 -- $(PYTEST_SMOKE_ARGS)
61+
COVERAGE_NO_CTRACER=1 tox -q -e py39 -- $(PYTEST_SMOKE_ARGS)
62+
63+
metasmoke:
64+
COVERAGE_NO_PYTRACER=1 ARGS="-e py39" make clean metacov metahtml
6865

6966
# Coverage measurement of coverage.py itself (meta-coverage). See metacov.ini
7067
# for details.

0 commit comments

Comments
 (0)