Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Don't run tests on macOS in xvfb
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Jun 6, 2020
1 parent b2d6fcd commit a59fd4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ script:
make regen_check;
fi
- cargo doc --features "dox,embed-lgpl-docs"
- xvfb-run cargo test --features "$FEATURES,embed-lgpl-docs"
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then xvfb-run cargo test --features "$FEATURES,embed-lgpl-docs"; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cargo test --features "$FEATURES,embed-lgpl-docs"; fi
# catch any sneaked in lgpl docs
- cargo build --features "$FEATURES,purge-lgpl-docs" --jobs 1
- git diff -R --exit-code
Expand Down

0 comments on commit a59fd4e

Please sign in to comment.