From b896bc8f86281425e29204cd04ddf2b5d82bbda3 Mon Sep 17 00:00:00 2001 From: Arthur Zucker Date: Mon, 29 Apr 2024 11:58:27 +0200 Subject: [PATCH] WAT? --- .circleci/create_circleci_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/create_circleci_config.py b/.circleci/create_circleci_config.py index de30ff88fcdb83..cc3877b2f4f3ed 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -120,7 +120,7 @@ def to_dict(self): test_command = "" if self.command_timeout: test_command = f"timeout {self.command_timeout} " - test_command += f"python3 -m pytest -rsfE -p no:warnings -vvv --tb=line --junitxml=test-results/junit.xml -n {self.pytest_num_workers} " + " ".join(pytest_flags) + test_command += f"python3 -m pytest -rsfE -p no:warnings -vvv --continue-on-collection-errors --tb=line --junitxml=test-results/junit.xml -n {self.pytest_num_workers} " + " ".join(pytest_flags) if self.parallelism == 1: if self.tests_to_run is None: