2022-01-12 05:28:21 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex -o pipefail
|
|
|
|
|
|
|
|
pip install -U pip setuptools wheel
|
2022-01-12 05:31:30 +01:00
|
|
|
sudo apt-get install libnetfilter-queue-dev
|
2022-01-12 05:28:21 +01:00
|
|
|
python setup.py sdist --formats=zip
|
|
|
|
pip install dist/*.zip
|
|
|
|
pip install -r test-requirements.txt
|
|
|
|
|
|
|
|
cd tests
|
|
|
|
pytest -W error -ra -v .
|