Skip to content

Commit

Permalink
CircleCI: fix activating venvs on restored environment
Browse files Browse the repository at this point in the history
  • Loading branch information
yosida95 committed Feb 12, 2019
1 parent 1c0e3da commit 63018f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- run: |
if [ ! -d ".venv" ]; then
python -m venv ./.venv
. ./.venv/bin/activate
fi
. ./.venv/bin/activate
pip install --upgrade pip tox
tox -v
- save_cache:
Expand All @@ -35,8 +35,8 @@ jobs:
- run: |
if [ ! -d ".venv" ]; then
python -m venv ./.venv
. ./.venv/bin/activate
fi
. ./.venv/bin/activate
pip install --upgrade pip tox
tox -v
- save_cache:
Expand All @@ -57,8 +57,8 @@ jobs:
- run: |
if [ ! -d ".venv" ]; then
python -m venv ./.venv
. ./.venv/bin/activate
fi
. ./.venv/bin/activate
pip install --upgrade pip tox
tox -v
- save_cache:
Expand All @@ -79,8 +79,8 @@ jobs:
- run: |
if [ ! -d ".venv" ]; then
python -m venv ./.venv
. ./.venv/bin/activate
fi
. ./.venv/bin/activate
pip install --upgrade pip tox
tox -v
- save_cache:
Expand Down

0 comments on commit 63018f8

Please sign in to comment.