diff --git a/.circleci/config.yml b/.circleci/config.yml index 4a464010f..654c87040 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ commands: - *restore-cache - run: name: Test (<< parameters.target >>) - command: TARGET=<< parameters.target >> ci/run.sh + command: TARGET=<< parameters.target >> ci_scripts/run-rust-test.sh no_output_timeout: 15m jobs: @@ -92,7 +92,7 @@ jobs: - run: cargo fetch - run: name: Test - command: TARGET=x86_64-apple-darwin ci/run.sh + command: TARGET=x86_64-apple-darwin ci_scripts/run-rust-test.sh test_x86_64-unknown-linux-gnu: executor: default @@ -125,7 +125,7 @@ jobs: - *restore-cache - run: name: build docs, run tests and build wheels - command: ci_scripts/run_all.sh + command: ci_scripts/run-python.sh - run: name: copying docs and wheels to workspace command: | diff --git a/ci_scripts/run_all.sh b/ci_scripts/run-python.sh similarity index 100% rename from ci_scripts/run_all.sh rename to ci_scripts/run-python.sh diff --git a/ci/run.sh b/ci_scripts/run-rust-test.sh similarity index 100% rename from ci/run.sh rename to ci_scripts/run-rust-test.sh