diff options
| -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 | 
