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 690e0d4 commit fc3beda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ def run_tests(env="test", use_local_mode=False, reuse_db=False, db_type="mysql",
run_selenium_tests = (str(run_selenium_tests).lower() == 'true')
cmd_suffix = ''
if run_in_parallel:
cmd_suffix = " --parallel"
cmd_suffix += " --parallel"
if reuse_db:
cmd_suffix = " --keepdb"
cmd_suffix += " --keepdb"
if exclude_tag and exclude_tag != "None":
cmd_suffix += " --exclude-tag=%s" % exclude_tag
if tag and tag != "None":
Expand Down

0 comments on commit fc3beda

Please sign in to comment.