Skip to content

Commit

Permalink
more explicit .travis.yml, remove /dev/shm fix
Browse files Browse the repository at this point in the history
explicit ubuntu trusty sudo-required
/dev/shm fix for multiprocessing.Queue is no longer needed

also remove commented-out docs build, will be different when re-added
  • Loading branch information
ploxiln committed Jun 9, 2018
1 parent 6c311d8 commit 1f0ac31
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
dist: trusty
sudo: required
language: python
python:
- "2.7"
Expand All @@ -11,8 +13,6 @@ install:
- pip install -r dev-requirements.txt
# install fab to test fab
- pip install -e .
# Deal with issue on Travis builders re: multiprocessing.Queue :(
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
before_script:
# Allow us to SSH passwordless to localhost
- ssh-keygen -f ~/.ssh/id_rsa -N ""
Expand All @@ -26,11 +26,5 @@ script:
- fab test
# Integration tests
- fab -H localhost test:integration
# Build docs; www first without warnings so its intersphinx objects file
# generates. Then docs (with warnings->errors), then www again (also w/
# warnings on.) FUN TIMES WITH CIRCULAR DEPENDENCIES.
# - invoke www
# - invoke docs -o -W
# - invoke www -c -o -W
notifications:
email: false

0 comments on commit 1f0ac31

Please sign in to comment.