13 lines
360 B
YAML
13 lines
360 B
YAML
version: 2.0
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/python:latest
|
|
working_directory: ~/ipc_unix
|
|
steps:
|
|
- checkout
|
|
- run: python -m venv env
|
|
- run: env/bin/pip install -e .
|
|
- run: env/bin/pip install -r dev-requirements.txt
|
|
- run: env/bin/python setup.py test
|