Skip to content

Commit

Permalink
fix py2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
chris48s committed Aug 16, 2018
1 parent 74faeb7 commit 9d227ff
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- run:
name: install dependencies
command: |
python -m venv venv
python3 -m venv venv
. venv/bin/activate
pip install -r test_requirements.txt
Expand Down Expand Up @@ -67,27 +67,3 @@ jobs:
<<: *test-template
docker:
- image: circleci/python:2.7-jessie

steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "test_requirements.txt" }}
- v1-dependencies-
- run:
name: install dependencies
command: |
mkdir -p ./venv
virtualenv ./venv
. venv/bin/activate
pip install -r test_requirements.txt
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "test_requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
python setup.py test
coveralls

0 comments on commit 9d227ff

Please sign in to comment.