We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8027a6a commit 7f2561fCopy full SHA for 7f2561f
.travis.yml
@@ -1,10 +1,9 @@
1
branches:
2
except:
3
- - servo
4
-
+ - servo
5
language: rust
6
rust:
7
- - nightly
8
- - beta
9
- - stable
+ - nightly
+ - beta
+ - stable
10
script: scripts/travis-build.sh
scripts/travis-build.sh
@@ -13,8 +13,8 @@ set -ex
13
if [ $TRAVIS_RUST_VERSION = nightly ]
14
then
15
cargo bench --all
16
- cargo test -p html5ever --features "rustc-test/capture"
17
- cargo test -p xml5ever --features "rustc-test/capture"
+ (cd html5ever && cargo test --features "rustc-test/capture")
+ (cd xml5ever && cargo test --features "rustc-test/capture")
18
else
19
20
cargo test --all
0 commit comments