Skip to content

Commit

Permalink
Disable running tests in parallel for on prem CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
asset-web committed Jan 3, 2025
1 parent 2dfed4a commit 690e0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def run_tests(env="test", use_local_mode=False, reuse_db=False, db_type="mysql",
"""env=test,use_local_mode=False,reuse_db=False,db_type=mysql,run_selenium_tests=False,tag=None"""
# Convert any command line arguments from strings to boolean values where necessary.
use_local_mode = (str(use_local_mode).lower() == 'true')
run_in_parallel = (str(reuse_db).lower() == 'true')
run_in_parallel = (str(run_in_parallel).lower() == 'true')
reuse_db = (str(reuse_db).lower() == 'true')
run_selenium_tests = (str(run_selenium_tests).lower() == 'true')
cmd_suffix = ''
Expand Down

0 comments on commit 690e0d4

Please sign in to comment.