chore - migrate to CircleCI 2.0; resolves #359.

This commit is contained in:
Mark Tse 2018-09-08 11:43:07 -04:00 committed by Tim Malone
parent 2cb886eee3
commit cbfd195e8b
2 changed files with 20 additions and 9 deletions

20
.circleci/config.yml Normal file
View file

@ -0,0 +1,20 @@
version: 2
jobs:
test:
docker:
- image: circleci/python:2.7
steps:
- checkout
- run:
name: Install deps
command: sudo make install && sudo make dev-install
- run:
name: Run tests
command: make test
workflows:
version: 2
test:
jobs:
- test

View file

@ -1,9 +0,0 @@
dependencies:
override:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
test:
override:
- make lint
- make test