pyo3/ci/travis/test.sh

12 lines
184 B
Bash
Raw Normal View History

2018-11-15 20:28:28 +00:00
#!/bin/bash
2018-05-21 13:25:09 +00:00
set -ex
2018-05-05 12:19:50 +00:00
2018-11-15 20:28:28 +00:00
cargo fmt --all -- --check
cargo test --features $FEATURES
2018-11-15 20:28:28 +00:00
cargo clippy --features $FEATURES
for example in examples/*; do
2018-11-15 20:28:28 +00:00
tox -e py --workdir $example
done