From 00fa08b7cff17b419f39b79b9bc33d2b16912d09 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Fri, 15 Jun 2018 15:26:19 -0400 Subject: [PATCH] bootstrap moves the source --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1b7705f36..033f850b3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,7 +70,7 @@ jobs: # readable. working_directory: "/tmp" command: | - ~/project/.circleci/setup-virtualenv.sh + /tmp/project/.circleci/setup-virtualenv.sh - run: &RUN_TESTS name: "Run test suite" @@ -78,7 +78,7 @@ jobs: # if the working directory is not readable. working_directory: "/tmp" command: | - ~/project/.circleci/setup-virtualenv.sh + /tmp/project/.circleci/setup-virtualenv.sh - store_artifacts: &STORE_TEST_LOG # Despite passing --workdir /tmp to tox above, it still runs trial @@ -229,12 +229,12 @@ jobs: - run: <<: *SETUP_VIRTUALENV command: | - sudo ~/project/.circleci/setup-virtualenv.sh + sudo /tmp/project/.circleci/setup-virtualenv.sh - run: <<: *RUN_TESTS command: | - sudo ~/project/.circleci/setup-virtualenv.sh + sudo /tmp/project/.circleci/setup-virtualenv.sh - store_artifacts: *STORE_TEST_LOG - store_artifacts: *STORE_OTHER_ARTIFACTS