diff options
| author | 2018-02-03 13:33:10 +0000 | |
|---|---|---|
| committer | 2018-02-03 13:33:10 +0000 | |
| commit | 5d17d553658df797130674fb745f17b0759d377c (patch) | |
| tree | d064d953526e80a7a6661d22252cdc4e09b0e700 | |
| parent | hey (diff) | |
do you want a venv or not...
| -rw-r--r-- | .circleci/config.yml | 3 | 
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 | 
