summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-03-03 14:37:13 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2020-03-03 14:37:13 +0100
commitebbf200f4d24391d497dbe66984681c46ad23799 (patch)
tree895903540776ee7b0e5aae6b38883134f3507ba8
parent4d271d7cd9a77fb0d3e9a715401a7dc4c548ce6e (diff)
downloadpsutil-ebbf200f4d24391d497dbe66984681c46ad23799.tar.gz
add make target
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0b7cbf3d..a3633abc 100644
--- a/Makefile
+++ b/Makefile
@@ -113,6 +113,10 @@ test: ## Run all tests.
${MAKE} install
$(TEST_PREFIX) $(PYTHON) $(TSCRIPT)
+test-parallel: ## Run all tests in parallel.
+ ${MAKE} install
+ $(TEST_PREFIX) $(PYTHON) $(TSCRIPT) --parallel
+
test-process: ## Run process-related API tests.
${MAKE} install
$(TEST_PREFIX) $(PYTHON) psutil/tests/test_process.py