aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml14
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: