https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 8f14121518d1298f5a603e8e52ae5c05212e6360 authored by Nicola Soranzo on 16 December 2018, 22:28:21 UTC
Merge pull request #7094 from nsoranzo/release_16.01_backport_2383
Tip revision: 8f14121
.travis.yml
language: python
python: 2.7
env:
  - TOX_ENV=py27-lint
  - TOX_ENV=py26-lint
  - TOX_ENV=py27-unit
  - TOX_ENV=py26-unit
  - TOX_ENV=qunit

before_install:
  # Workaround for https://github.com/travis-ci/travis-ci/issues/7940
  - sudo rm -f /etc/boto.cfg

install:
  - pip install tox
  - if [ "$TOX_ENV" == "qunit" ]; then bash -c 'cd test/qunit && npm install'; fi

script: tox -e $TOX_ENV

back to top