Skip flaky tests in non-Docker CI builds (#474)

@briansmith pointed out in https://github.com/runconduit/conduit/pull/441#discussion_r170816351 that I forgot to add `--no-default-features` to the Travis CI non-Docker test step in PR #441, to actually skip the timing dependent tests on CI.

This fixes that.
This commit is contained in:
Eliza Weisman 2018-02-27 14:05:57 -08:00 committed by GitHub
parent b788daf429
commit 9ffe8b7970
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ jobs:
install: install:
- cargo fetch --locked - cargo fetch --locked
script: script:
- cargo test --frozen - cargo test --frozen --no-default-features
- language: go - language: go
# XXX; The "1.10" must be quoted or it will get intrepreted as 1.1. See # XXX; The "1.10" must be quoted or it will get intrepreted as 1.1. See