Merge pull request #3123 from bison/no-parallel-tests

Revert "Parallelize pytest runs in Makefile"
This commit is contained in:
Brad Ison 2018-06-21 13:42:53 -04:00 committed by GitHub
commit db7e5f7cfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 -n 2 \
TEST=true PYTHONPATH="." py.test \
--cov="." --cov-report=html --cov-report=term-missing \
--timeout=3600 --verbose -x \
./
registry-test:
TEST=true PYTHONPATH="." py.test -n 2 \
TEST=true PYTHONPATH="." py.test \
--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 -n 2 \
TEST=true PYTHONPATH="." py.test \
--cov="." --cov-report=html --cov-report=term-missing \
--timeout=3600 --verbose --show-count -x \
./test/registry_tests.py