Skip to content

Commit adc919f

Browse files
committed
Merge branch 'master' into feature/__bool__
2 parents 747f777 + ec1d30b commit adc919f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+10015
-3055
lines changed

.travis.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ before_cache:
1212
matrix:
1313
fast_finish: true
1414
include:
15-
- name: Run Rust tests
15+
- name: Run Rust tests(linux)
1616
language: rust
17+
os: linux
1718
rust: stable
1819
cache: cargo
1920
script:
@@ -24,6 +25,19 @@ matrix:
2425
# See: https://docs.travis-ci.com/user/caching/#caches-and-build-matrices
2526
- JOBCACHE=1
2627

28+
- name: Run Rust tests(osx)
29+
language: rust
30+
os: osx
31+
rust: stable
32+
cache: cargo
33+
script:
34+
- cargo build --verbose --all
35+
- cargo test --verbose --all
36+
env:
37+
# Prevention of cache corruption.
38+
# See: https://docs.travis-ci.com/user/caching/#caches-and-build-matrices
39+
- JOBCACHE=11
40+
2741
# To test the snippets, we use Travis' Python environment (because
2842
# installing rust ourselves is a lot easier than installing Python)
2943
- name: Python test snippets

0 commit comments

Comments
 (0)