pyo3/ci/travis/test.sh
2019-04-19 22:47:21 +02:00

14 lines
324 B
Bash
Executable file

#!/bin/bash
set -ex
cargo test --features "$FEATURES num-complex"
( cd pyo3-derive-backend; cargo test )
if [ "$TRAVIS_JOB_NAME" = "Minimum nightly" ]; then
cargo fmt --all -- --check
cargo clippy --features "$FEATURES num-complex"
fi
for example_dir in examples/*; do
tox -c "$example_dir/tox.ini" -e py
done