aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar JoeBanks13 <[email protected]>2018-02-03 13:33:10 +0000
committerGravatar JoeBanks13 <[email protected]>2018-02-03 13:33:10 +0000
commit5d17d553658df797130674fb745f17b0759d377c (patch)
treed064d953526e80a7a6661d22252cdc4e09b0e700
parenthey (diff)
do you want a venv or not...
-rw-r--r--.circleci/config.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 835eeeab..dc0ed556 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -10,10 +10,13 @@ jobs:
- run:
name: install dependencies
command: |
+ python3 -m venv venv
+ . venv/bin/activate
pip install -r requirements.txt
pip install snekchek yapf flake8 isort
- run:
name: lint code
command: |
+ . venv/bin/activate
snekchek
\ No newline at end of file