diff options
author | 2018-02-03 13:32:14 +0000 | |
---|---|---|
committer | 2018-02-03 13:32:14 +0000 | |
commit | d21d2c110bef271a6a7b14c66a849178b479c1e5 (patch) | |
tree | 54df43c9041a7d2dc28a3ef846682bbc63a2b90c | |
parent | Add circleci (diff) |
hey
-rw-r--r-- | .circleci/config.yml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 575962cd..835eeeab 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,20 +1,8 @@ -# Python CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-python/ for more details -# version: 2 jobs: build: docker: - # specify the version you desire here - # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - image: circleci/python:3.6.1 - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/postgres:9.4 - working_directory: ~/repo steps: @@ -22,8 +10,6 @@ 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: |