Merge pull request #209 from fitzgen/quick-fix-for-concurrent-tests

CI: Temporarily run tests with only one thread
master
ashley williams 7 years ago committed by GitHub
commit 373708c145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .travis.yml

@ -7,7 +7,9 @@ matrix:
# tests pass
- rust: nightly
script:
- cargo test --locked
# XXX: `--test-threads 1` is a hack until we have a proper fix for
# synchronizing access to the fixtures.
- cargo test --locked -- --test-threads 1
- rustup component add rustfmt-preview
- cargo fmt --all -- --check
env: RUST_BACKTRACE=1

Loading…
Cancel
Save