Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurZucker committed Apr 29, 2024
1 parent d17dad9 commit d1eefa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/create_circleci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"}})
Expand Down

0 comments on commit d1eefa3

Please sign in to comment.