remove some debugging from .travis.yml and importantly, deactivate the trough virtualenv before installing warcprox and running tests (otherwise it uses the wrong version of python)

This commit is contained in:
Noah Levitt 2017-10-18 09:45:06 -07:00
parent 4c4f8ead09
commit d4b39f3fcc

View File

@ -26,39 +26,22 @@ services:
- docker
before_install:
- hostname -s
- hostname -f
- ping -c3 `hostname -s`
- ping -c3 `hostname -f`
- ping -c3 localhost
- ps ww -fHe
- sudo service docker restart ; sleep 10 # https://github.com/travis-ci/travis-ci/issues/4778
- docker run -d --publish=28015:28015 rethinkdb
- docker run -d --publish=8020:8020 --publish=50070:50070 --publish=50010:50010 --publish=50020:50020 --publish=50075:50075 chalimartines/cdh5-pseudo-distributed
- ps ww -fHe
- virtualenv -p python3 /opt/trough-ve3
- . /opt/trough-ve3/bin/activate
- 'env | sort'
- pip install git+https://github.com/jkafader/snakebite@feature/python3-version-string
- pip install git+https://github.com/nlevitt/trough.git@toward-warcprox-dedup
- 'sync.py >>/tmp/trough-sync-local.out 2>&1 &'
- date
- sleep 5
- date
- python -c "import doublethink ; from trough.settings import settings ; rr = doublethink.Rethinker(settings['RETHINKDB_HOSTS']) ; rr.db('trough_configuration').wait().run()"
- 'sync.py --server >>/tmp/trough-sync-server.out 2>&1 &'
- 'uwsgi --venv=/opt/trough-ve3 --http :6222 --master --processes=2 --harakiri=240 --max-requests=50000 --vacuum --die-on-term --wsgi-file /opt/trough-ve3/bin/writer.py >>/tmp/trough-write.out 2>&1 &'
- 'uwsgi --venv=/opt/trough-ve3 --http :6112 --master --processes=2 --harakiri=20 --max-requests=50000 --vacuum --die-on-term --wsgi-file /opt/trough-ve3/bin/write_provisioner_local.py >>/tmp/trough-write-provisioner-local.out 2>&1 &'
- 'uwsgi --venv=/opt/trough-ve3 --http :6111 --master --processes=2 --harakiri=20 --max-requests=50000 --vacuum --die-on-term --wsgi-file /opt/trough-ve3/bin/write_provisioner_server.py >>/tmp/trough-write-provisioner-server.out 2>&1 &'
- 'uwsgi --venv=/opt/trough-ve3 --http :6444 --master --processes=2 --harakiri=3200 --socket-timeout=3200 --max-requests=50000 --vacuum --die-on-term --wsgi-file /opt/trough-ve3/bin/reader.py >>/tmp/trough-read.out 2>&1 &'
- sleep 3
- ps ww -fHe
- cat /tmp/trough-write.out
- cat /tmp/trough-write-provisioner-server.out
- cat /tmp/trough-write-provisioner-local.out
- cat /tmp/trough-sync-server.out
- cat /tmp/trough-sync-local.out
- cat /tmp/trough-read.out
- deactivate
install:
- pip install . pytest requests warcio
@ -73,6 +56,7 @@ script:
- py.test -v --rethinkdb-trough-db-url=rethinkdb://localhost/trough_configuration tests
after_script:
- ps ww -fHe
- cat /tmp/trough-write.out
- cat /tmp/trough-write-provisioner-server.out
- cat /tmp/trough-write-provisioner-local.out