test(py3): Add diff tests convenience targets

This commit is contained in:
Ross Patterson 2020-09-30 12:14:06 -07:00
parent fb87daad0b
commit 921416cba2
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,13 @@ MAKEFLAGS += --no-builtin-rules
default: default:
@echo "no default target" @echo "no default target"
.PHONY: test-py3-all-before
## Log the output of running all tests under Python 3 before changes
test-py3-all-before: ../../.tox/make-test-py3-all-old.log
.PHONY: test-py3-all-diff
## Compare the output of running all tests under Python 3 after changes
test-py3-all-diff: ../../.tox/make-test-py3-all.diff
# Real targets # Real targets