13 lines
244 B
Bash
13 lines
244 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex -o pipefail
|
||
|
|
||
|
pip install -U pip setuptools wheel
|
||
|
sudo apt-get install libnetfilterqueue-dev
|
||
|
python setup.py sdist --formats=zip
|
||
|
pip install dist/*.zip
|
||
|
pip install -r test-requirements.txt
|
||
|
|
||
|
cd tests
|
||
|
pytest -W error -ra -v .
|