13 lines
248 B
Bash
13 lines
248 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export PATH=env/bin:${PATH}
|
||
|
|
||
|
pip install black==18.9b0
|
||
|
|
||
|
black tests ipc_unix setup.py --check
|
||
|
flake8 ipc_unix tests setup.py --ignore=E128,E501
|
||
|
isort -rc -c ipc_unix tests setup.py
|
||
|
mypy --strict-optional ipc_unix tests
|