diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2016-12-09 13:01:32 -0800 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2016-12-09 13:01:32 -0800 |
commit | ec2e660bf733e8b6383bc235236f414b3bc57c28 (patch) | |
tree | a43fbe6df76c3d3f6d1820b96630c4279e593ec0 | |
parent | 07acbdd568f9186c13e5f5051b5d4a2d19eb76fa (diff) |
Fix Travis CI test integration with workspaces
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 17beccc6..5882493b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,9 +31,10 @@ script: - git add -A - git diff @ - git diff-index --quiet HEAD - - cargo test -p tests_expectations - cargo build --features "$BINDGEN_FEATURES _docs" - - cd .. + - cd tests/expectations + - cargo test + - cd ../../../bindgen - cargo test --features "$BINDGEN_FEATURES" - cargo test --release --features "$BINDGEN_FEATURES" |