14 lines
408 B
YAML
14 lines
408 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
|
|
- run: env/bin/black tests ipc_unix
|