Skip to content

Commit

Permalink
Make idna and url share a Cargo worksace.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Dec 19, 2016
1 parent a5126f2 commit 191e11b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ readme = "README.md"
keywords = ["url", "parser"]
license = "MIT/Apache-2.0"

[workspace]
members = [".", "idna"]

[[test]]
name = "unit"

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 191e11b

Please sign in to comment.