Test num-bigint on CI

This commit is contained in:
kngwyu 2019-09-28 19:05:15 +09:00
parent f8573e7e13
commit 094125cfe2
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ function Invoke-Call
}
}
Invoke-Call { cargo test --verbose }
Invoke-Call { cargo test --verbose --features="num-bigint num-complex" }
$examplesDirectory = "examples"

View File

@ -3,7 +3,7 @@ set -ex
# run `cargo test` only if testing against cpython.
if ! [[ $FEATURES == *"pypy"* ]]; then
cargo test --features "$FEATURES num-complex"
cargo test --features "$FEATURES num-bigint num-complex"
( cd pyo3-derive-backend; cargo test )
else
# check that pypy at least builds