Skip to content

Commit d24eba1

Browse files
author
Colin Toal
committed
fixed python2 venv dependency
1 parent daa5151 commit d24eba1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313
- run:
1414
name: install dependencies
1515
command: |
16-
pip install virtualenv
16+
mkdir -p ./venv
17+
virtualenv ./venv
1718
. venv/bin/activate
1819
- run:
1920
name: run tests
2021
command: |
2122
. venv/bin/activate
22-
23+
# include tests when not dependent on KDC
2324
deploy-to-s3:
2425
docker:
2526
- image: circleci/python:2.7.15
@@ -28,7 +29,6 @@ jobs:
2829
- run:
2930
name: install dependencies
3031
command: |
31-
pip install virtualenv
3232
. venv/bin/activate
3333
pip install awscli
3434
- run:

0 commit comments

Comments
 (0)