Skip to content

Commit

Permalink
Merge pull request #453 from woshilapin/workspace
Browse files Browse the repository at this point in the history
Remove --all [deprecated] in favor of --workspace
  • Loading branch information
mergify[bot] authored Nov 8, 2019
2 parents 4d7df8e + 1cef8c1 commit 63e89ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ matrix:
- rust: stable
name: Quality check
before_script: rustup component add clippy
script: cargo clippy --all --all-features -- -D warnings
script: cargo clippy --workspace --all-features -- -D warnings
allow_failures:
- rust: nightly
script:
- cargo test --all --verbose --features proj
- cargo test --workspace --verbose --features proj
deploy:
provider: cargo
on:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ For the static analysis, we use [`clippy`].

```sh
# To format the source code in the entire repository
cargo clippy --all
cargo clippy --workspace
```

[`clippy`]: https://github.com/rust-lang/rust-clippy
Expand All @@ -49,7 +49,7 @@ The test suite include unit test and integration tests.

```sh
# Run all the tests of `transit_model` in the entire repository
cargo test --all --all-features
cargo test --workspace --all-features
```

## Conduct
Expand Down

0 comments on commit 63e89ff

Please sign in to comment.