diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-14 17:36:25 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-14 17:36:25 -0500 |
commit | fa0cbe2c60a324bc37cf897a60f2dae49bf48a87 (patch) | |
tree | 747184937cfa4bae826546da8273aa5f958c90d5 | |
parent | 38ef0444428ec185373b6165ab86f46831021f4b (diff) | |
download | python-coveragepy-git-fa0cbe2c60a324bc37cf897a60f2dae49bf48a87.tar.gz |
Use oldest versions to smoke, to find problems sooner
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,10 +50,10 @@ test: TOX_SMOKE_ARGS = -n 6 -m "not expensive" --maxfail=3 $(ARGS) smoke: - COVERAGE_NO_PYTRACER=1 tox -e py27,py35 -- $(TOX_SMOKE_ARGS) + COVERAGE_NO_PYTRACER=1 tox -e py26,py33 -- $(TOX_SMOKE_ARGS) pysmoke: - COVERAGE_NO_CTRACER=1 tox -e py27,py35 -- $(TOX_SMOKE_ARGS) + COVERAGE_NO_CTRACER=1 tox -e py26,py33 -- $(TOX_SMOKE_ARGS) metacov: COVERAGE_COVERAGE=yes tox $(ARGS) |