From 5ce15348eaaf037c159a7cae25df559fc3a4dd4a Mon Sep 17 00:00:00 2001 From: Brad Ison Date: Wed, 13 Jun 2018 12:02:01 -0400 Subject: [PATCH] Parallelize pytest runs in Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 50f8109c7..d6f22188c 100644 --- a/Makefile +++ b/Makefile @@ -43,19 +43,19 @@ conf/stack/license: $(QUAY_CONFIG)/local/license ln -s $(QUAY_CONFIG)/local/license conf/stack/license unit-test: - TEST=true PYTHONPATH="." py.test \ + TEST=true PYTHONPATH="." py.test -n 2 \ --cov="." --cov-report=html --cov-report=term-missing \ --timeout=3600 --verbose -x \ ./ registry-test: - TEST=true PYTHONPATH="." py.test \ + TEST=true PYTHONPATH="." py.test -n 2 \ --cov="." --cov-report=html --cov-report=term-missing \ --timeout=3600 --verbose --show-count -x \ test/registry/registry_tests.py registry-test-old: - TEST=true PYTHONPATH="." py.test \ + TEST=true PYTHONPATH="." py.test -n 2 \ --cov="." --cov-report=html --cov-report=term-missing \ --timeout=3600 --verbose --show-count -x \ ./test/registry_tests.py