From 921416cba2e4a8aa1ee6783b242cb538160a9f97 Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Wed, 30 Sep 2020 12:14:06 -0700 Subject: [PATCH] test(py3): Add diff tests convenience targets --- misc/python3/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/misc/python3/Makefile b/misc/python3/Makefile index 33bb90116..018d20035 100644 --- a/misc/python3/Makefile +++ b/misc/python3/Makefile @@ -19,6 +19,13 @@ MAKEFLAGS += --no-builtin-rules default: @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