From: Michael Orlitzky Date: Thu, 9 Apr 2026 00:49:10 +0000 (-0400) Subject: makefile: test in parallel X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=caf07f1dd82cd15f86a4fca6345dbe1e4c1e5f09;p=sage.d.git makefile: test in parallel --- diff --git a/makefile b/makefile index 0ec696b..65e3dac 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ check: - python -m sage.doctest --long --exitfirst mjo/ + python -m sage.doctest --long --nthread $$(nproc) --exitfirst mjo/ clean: find ./ -type f -name '*.pyc' -delete find ./ -type d -name '__pycache__' -delete