@@ -3,8 +3,6 @@ rust:
- nightly
- beta
- stable
-script:
- - make test
- - cd idna && cargo test
+script: make test
notifications:
webhooks: http://build.servo.org:54856/travis
@@ -11,6 +11,9 @@ readme = "README.md"
keywords = ["url", "parser"]
license = "MIT/Apache-2.0"
+[workspace]
+members = [".", "idna"]
+
[[test]]
name = "unit"
@@ -1,5 +1,6 @@
test:
cargo test --features "query_encoding serde rustc-serialize"
[ x$$TRAVIS_RUST_VERSION != xnightly ] || cargo test --features heapsize
+ (cd idna && cargo test)
.PHONY: test