From 97e18629e014971b32c20e55406f1a7b8bcaf9ae Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Wed, 15 Apr 2026 09:10:50 +0200 Subject: [PATCH] Just: run Swift extra-tests sequentially The parallel attribute causes concurrent sembuild calls that conflict with each other. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- swift/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/justfile b/swift/justfile index 88bf72f4c94..72fa15c8156 100644 --- a/swift/justfile +++ b/swift/justfile @@ -13,5 +13,5 @@ format ARGS=".": (_format_cpp ARGS) [group('test')] language-tests *EXTRA_ARGS: (_language_tests EXTRA_ARGS source_dir() 'ql/test') -[group('test'), parallel] +[group('test')] extra-tests: (_sembuild "target/test/check-queries-swift") (_sembuild "target/test/check-db-upgrades-swift") (_sembuild "target/test/check-db-downgrades-swift")