2020-03-24 05:59:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-03-24 15:45:12 +00:00
|
|
|
set -e -u -o pipefail
|
|
|
|
|
|
|
|
cargo test --features "${FEATURES:-} num-bigint num-complex"
|
2020-03-24 05:59:03 +00:00
|
|
|
(cd pyo3-derive-backend; cargo test)
|
|
|
|
|
|
|
|
for example_dir in examples/*; do
|
|
|
|
cd $example_dir
|
|
|
|
tox -c "tox.ini" -e py
|
|
|
|
cd -
|
|
|
|
done
|