File tree 1 file changed +6
-9
lines changed
1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -49,22 +49,19 @@ LINTABLE = coverage tests igor.py setup.py __main__.py
49
49
lint : # # Run linters and checkers.
50
50
tox -q -e lint
51
51
52
- todo :
53
- -grep -R --include=* .py TODO $(LINTABLE )
54
-
55
- pep8 :
56
- pycodestyle --filename=* .py --repeat $(LINTABLE )
57
-
58
52
test :
59
- tox -q -e py35 $(ARGS )
53
+ tox -q -e py39 $(ARGS )
60
54
61
55
PYTEST_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS )
62
56
63
57
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 )
65
59
66
60
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
68
65
69
66
# Coverage measurement of coverage.py itself (meta-coverage). See metacov.ini
70
67
# for details.
You can’t perform that action at this time.
0 commit comments