Skip to content

Commit

Permalink
Merge #327
Browse files Browse the repository at this point in the history
327: fix tests failing for slog r=kinggoesgaming a=kinggoesgaming

**I'm submitting a(n)** bug fix

# Description
removed testing `slog` for `1.22.0` rust branch

# Motivation
`slog` added support for `i128` types in `2.4.0` but did not feature flag it.

# Tests
tests dont fail anymore :)

# Related Issue(s)
#321 


Co-authored-by: Hunar Roop Kahlon <[email protected]>
  • Loading branch information
bors[bot] and kinggoesgaming committed Sep 29, 2018
2 parents 613d9db + 369a064 commit 4b6eb29
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,28 @@ language: rust

matrix:
include:
- os: linux
rust: 1.22.0
script:
- cargo test --no-default-features
- cargo test
- cargo test --features "serde"
- cargo test --features "v1"
- cargo test --features "v3"
- cargo test --features "v4"
- cargo test --features "v5"
- cargo test --features "serde std v1 v3 v4 v5"
- os: osx
rust: 1.22.0
script:
- cargo test --no-default-features
- cargo test
- cargo test --features "serde"
- cargo test --features "v1"
- cargo test --features "v3"
- cargo test --features "v4"
- cargo test --features "v5"
- cargo test --features "serde std v1 v3 v4 v5"
- os: osx
rust: nightly
- rust: nightly
Expand All @@ -29,7 +49,6 @@ notifications:
os: linux

rust:
- 1.22.0
- stable
- beta
- nightly
Expand Down

0 comments on commit 4b6eb29

Please sign in to comment.