From 1085861d42556a19e9ff93279a2d4d7f92fa44f9 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 25 Apr 2025 15:55:27 +0200 Subject: [PATCH] chore: add --maxfail to py.test in make test command Co-authored-by: David Larlet --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cc529fea..a97ee8d9 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ publish: ## Publish the Python package to Pypi test: testpy testjs testpy: - pytest -vv umap/tests/ --dist=loadgroup --reruns 1 + pytest -vv umap/tests/ --dist=loadgroup --reruns 1 --maxfail 10 test-integration: pytest -xv umap/tests/integration/ --dist=loadgroup