diff options
author | Brian Warner <warner@lothar.com> | 2018-10-17 11:06:24 -0700 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-10-17 11:21:16 -0700 |
commit | abb0dc09dbb7971da2ce16c974d5d4980ae969df (patch) | |
tree | a68f0a3d2fd3580fc882130d74943d9c933fa860 | |
parent | f8a48e10b01db051cd3216f36e688a37c5089093 (diff) | |
download | PAKEs-abb0dc09dbb7971da2ce16c974d5d4980ae969df.tar.xz |
travis: allow rustfmt to fail
I'm on the fence about this, but I have to admit that having your PR fail
because of formatting issues isn't a great experience for new contributors.
We will need to run `cargo fmt` ourselves on a regular basis.
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index e12f111..da26702 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,5 @@ matrix: - cargo fmt -- --check allow_failures: - rust: nightly + - env: RUSTFMT script: cargo test --release --verbose --all |