From a502cc19cc7b5c244b13293df177cfe5643a1eb8 Mon Sep 17 00:00:00 2001 From: Arthur Zucker Date: Sun, 28 Apr 2024 19:53:31 +0200 Subject: [PATCH] nit? --- .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 ca52a8e8e4ca3f..c5bf9b2176e16d 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -222,7 +222,7 @@ def to_dict(self): steps.append({"run": {"name": "Check test results", "command": check_test_command}}) - steps.append({"run": {"name": "Show skip reasons", "command": f"python3 ~/.circleci/parse_test_outputs.py --file ~/transformers/tests_output.txt"}}) + steps.append({"run": {"name": "Show skip reasons", "command": f"python3 .circleci/parse_test_outputs.py --file ~/transformers/tests_output.txt"}}) steps.append({"store_test_results": {"path": "test-results"}}) steps.append({"store_artifacts": {"path": "~/transformers/tests_output.txt"}})