From 89039475fdc0c1edb7bed3321904d66ff0a3d017 Mon Sep 17 00:00:00 2001 From: Simon Albinsson Date: Mon, 23 Apr 2018 20:47:21 +0000 Subject: [PATCH] Makefile: Continue testing if py3 fails --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 126cb2a..d1cafcf 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,12 @@ -test: - python3 -m unittest discover +.PHONY: test test2 test3 +test2: python2 -m unittest discover +test3: + python3 -m unittest discover || true + +test: test3 test2 + uppload: mkdir -p dist.old mv dist/* dist.old/