From 8e764f355da30bbbb5906fc5927d77d1a636fe37 Mon Sep 17 00:00:00 2001 From: David Glick Date: Mon, 29 Nov 2021 22:20:47 -0500 Subject: [PATCH] Run tox in parallel using -p instead of detox --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3fa4c2edc..b6d321e759 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ init: pip install -r requirements-dev.txt test: # This runs all of the tests, on both Python 2 and Python 3. - detox + tox -p ci: pytest tests --junitxml=report.xml