pyo3/ci/travis/test.sh

14 lines
202 B
Bash
Raw Normal View History

#!/bin/sh
2018-05-21 13:25:09 +00:00
set -ex
2018-05-05 12:19:50 +00:00
cargo build --features $FEATURES
cargo test --features $FEATURES
for example in examples/*; do
cd $example
python setup.py install
pytest -v tests
cd $TRAVIS_BUILD_DIR
done