pyo3/ci/travis/test.sh

11 lines
198 B
Bash
Raw Normal View History

2018-11-15 20:28:28 +00:00
#!/bin/bash
2019-01-10 07:06:58 +00:00
set -ex
2019-01-10 07:06:58 +00:00
cargo fmt --all -- --check
cargo test --features "$FEATURES"
cargo clippy --features "$FEATURES"
2018-05-05 12:19:50 +00:00
for example_dir in examples/*; do
2019-01-10 07:06:58 +00:00
tox -c "$example_dir/tox.ini" -e py
done