suppositions 0.1.4

Property testing with automagic shrinking.
Documentation
language: rust
sudo: false
language: rust

rust:
- stable
- beta
- nightly

cache:
  directories:
    - $HOME/.cargo
    - target

install:
  - true

before_script:
- |
    pip install 'travis-cargo<0.2' --user &&
    export PATH=$HOME/.local/bin:$PATH

env:
  - TRAVIS_CARGO_NIGHTLY_FEATURE=""

script:
- travis-cargo build -- $EXTRA
- travis-cargo test  -- $EXTRA
- travis-cargo --only stable doc
after_success:
  # upload the documentation from the build with stable (automatically only actually
  # runs on the master branch, not individual PRs)
  - travis-cargo --only stable doc-upload


matrix:
    allow_failures:
        - rust: nightly
        - rust: beta