Problem: Travis CI fails

Solution: use proper commands for running tests
This commit is contained in:
Yurii Rashkovskii 2018-06-15 14:21:31 -07:00
parent 5ea6bb185d
commit dbc3bd80ab
No known key found for this signature in database
GPG Key ID: 1D60D7CFD80845FF
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ matrix:
- cp parity ${HOME}/bin
- export PATH=${HOME}/bin:${PATH}
script:
- env BACKTRACE=1 && cd bridge && cargo test
- env BACKTRACE=1 && cd integration-tests && cargo test -- --test-threads=1 --nocapture
- cd bridge && env BACKTRACE=1 && cargo test && cd ..
- cd integration-tests && env BACKTRACE=1 cargo test -- --test-threads=1 --nocapture && cd ..
- make
- cp target/releases/bridge bridge-linux-x86_64
before_deploy: git tag `git describe --always --tags`