From 0d992320bdd9eecb2e0e86ebb3e7088ce81a9829 Mon Sep 17 00:00:00 2001 From: Jeff Schnitter Date: Tue, 4 Nov 2025 16:47:01 -0800 Subject: [PATCH] perf: optimize test scheduling with --dist loadfile for 25% faster test runs --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 2dca61a..de6a855 100644 --- a/Justfile +++ b/Justfile @@ -13,7 +13,7 @@ _setup: # Run all tests test-all: _setup test-import - {{pytest}} -n auto -m "not setup" --html=report.html --self-contained-html --cov=cortexapps_cli --cov-append --cov-report term-missing tests + {{pytest}} -n auto --dist loadfile -m "not setup" --html=report.html --self-contained-html --cov=cortexapps_cli --cov-append --cov-report term-missing tests # Run all tests serially - helpful to see if any tests seem to be hanging _test-all-individual: test-import