Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ os:
matrix:
include:
- env: RUSTFMT
rust: 1.29.1 # `stable`: Locking down for consistent behavior
rust: 1.31.0 # `stable`: Locking down for consistent behavior
install:
- rustup component add rustfmt-preview
- rustup component add rustfmt
script:
- cargo fmt -- --check
- env: RUSTFLAGS="-D warnings"
rust: 1.29.1 # `stable`: Locking down for consistent behavior
rust: 1.31.0 # `stable`: Locking down for consistent behavior
install:
script:
- cargo check --tests --all-features
- env: CLIPPY
rust: nightly-2018-07-17
rust: 1.31.0 # `stable`: Locking down for consistent behavior
install:
- rustup component add clippy-preview
- rustup component add clippy
script:
- cargo clippy --all-features -- -D clippy
- cargo clippy --all-features

install:
- rustc -Vv
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ assert_cmd = "0.10"

Here's a trivial example:

```rust
```rust,no_run
extern crate assert_cmd;

use std::process::Command;
use assert_cmd::prelude::*;

Command::main_binary()
Command::cargo_bin("bin_fixture")
.unwrap()
.assert()
.success();
Expand Down
Loading