Add circleci config
This commit is contained in:
parent
25ba13012d
commit
44a56905cd
1 changed files with 12 additions and 0 deletions
12
.circleci/config.yml
Normal file
12
.circleci/config.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
version: 2.0
|
||||
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: circleci/python:latest
|
||||
working_directory: ~/ipc_unix
|
||||
steps:
|
||||
- checkout
|
||||
- run: pip install -e .
|
||||
- run: pip install -r dev-requirements.txt
|
||||
- run: python setup.py test
|
Reference in a new issue