From d1eefa3cc4d2220fa459f62a01c96e99fdaced24 Mon Sep 17 00:00:00 2001 From: Arthur Zucker Date: Mon, 29 Apr 2024 10:33:57 +0200 Subject: [PATCH] nits --- .circleci/create_circleci_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/create_circleci_config.py b/.circleci/create_circleci_config.py index 89457a2056b655..99c0259a41d8df 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -193,8 +193,8 @@ def to_dict(self): steps.append({"run": {"name": "Run tests", "command": test_command}}) steps.append({"run": {"name": "Show skip reasons", "command": f"python3 .circleci/parse_test_outputs.py --file ~/transformers/tests_output.txt --skip"}}) - steps.append({"run": {"name": "Show fail reasons", "command": f"python3 .circleci/parse_test_outputs.py --file reports/{self.job_name}/failures_short.txt --fail"}}) - steps.append({"run": {"name": "Show errors", "command": f"python3 .circleci/parse_test_outputs.py --file reports/{self.job_name}/errors.txt --errors"}}) + steps.append({"run": {"name": "Show fail reasons", "command": f"python3 .circleci/parse_test_outputs.py --file ~/transformers/tests_output.txt --fail"}}) + steps.append({"run": {"name": "Show errors", "command": f"python3 .circleci/parse_test_outputs.py --file ~/transformers/tests_output.txt --errors"}}) steps.append({"store_test_results": {"path": "test-results"}}) steps.append({"store_artifacts": {"path": "~/transformers/tests_output.txt"}})