test(py3): Capture how to run all tests under py3

Useful to review common errors under Python 3 as opposed to module-by-module.
This commit is contained in:
Ross Patterson 2020-09-24 11:20:44 -07:00
parent 92de966c91
commit 430881be15

View File

@ -31,6 +31,10 @@ default:
## Run all tests and code reports
test: .tox
tox --develop -p auto
.PHONY: test-py3-all
## Run all tests under Python 3
test-py3-all: .tox
tox --develop -e py36 allmydata
# This is necessary only if you want to automatically produce a new
# _version.py file from the current git history (without doing a build).