From 2eda9967a4bb7a676655ec03a6298585c5111c20 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 13 Feb 2022 05:27:54 +0100 Subject: [PATCH] only run sqlite paralell --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index c68c31fbf5..be79862793 100644 --- a/tasks.py +++ b/tasks.py @@ -274,7 +274,7 @@ def test(c, database=None): manage(c, 'check') # Run coverage tests - manage(c, 'test --parallel', pty=True) + manage(c, 'test', pty=True) @task @@ -290,7 +290,7 @@ def coverage(c): manage(c, 'check') # Run coverage tests - c.run('coverage run {manage} test {apps}'.format( + c.run('coverage run {manage} test {apps} --parallel'.format( manage=managePyPath(), apps=' '.join(apps()) ))