[go: up one dir, main page]

pyo3 0.3.2

Bindings to Python interpreter
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -ex

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