Run tests in Python CI workflow

This commit is contained in:
thunderbiscuit
2023-03-01 10:52:02 -05:00
parent 488edf8bd2
commit 9c6069e389
4 changed files with 62 additions and 44 deletions

View File

@@ -11,9 +11,10 @@ pip install bdkpython
## Run the tests
```shell
pip3 install --requirement requirements.txt
pip install --requirement requirements.txt
bash ./generate.sh
pip3 install ./dist/bdkpython-<yourversion>-py3-none-any.whl --force-reinstall
python setup.py bdist_wheel --verbose
pip install ./dist/bdkpython-<yourversion>-py3-none-any.whl --force-reinstall
python -m unittest --verbose tests/test_bdk.py
```
@@ -22,11 +23,11 @@ python -m unittest --verbose tests/test_bdk.py
# Install dependencies
pip install --requirement requirements.txt
# Generate the bindings first
# Generate the bindings
bash generate.sh
# Build the wheel
python3 setup.py --verbose bdist_wheel
python setup.py --verbose bdist_wheel
```
## Run tox to build and test locally
@@ -34,7 +35,7 @@ python3 setup.py --verbose bdist_wheel
# install dev requirements
pip install --requirement requirements-dev.txt
# build bindings glue code (located at .bdk-python/src/bdkpython/bdk.py)
# build bindings glue code (located at ./src/bdkpython/bdk.py)
source ./generate.sh
# build and test

View File

@@ -19,9 +19,6 @@ case $OS in
cp ../target/release-smaller/libbdkffi.so ../bdk-python/src/bdkpython/libbdkffi.so
;;
esac
# echo "Bundling bdkpython..."
cd ../bdk-python/
# python setup.py --verbose bdist_wheel
echo "All done!"

View File

@@ -10,7 +10,7 @@ deps =
-rrequirements.txt
-rrequirements-dev.txt
commands =
python3 setup.py -v build
python3 setup.py -v install
python3 setup.py build --verbose
python3 setup.py install --verbose
pytest --verbose --override-ini console_output_style=count
python3 setup.py --verbose bdist_wheel
python3 setup.py bdist_wheel --verbose