0
|
1 # This is a special configuration file to run tests on Travis-CI via
|
|
2 # GitHub notifications when changes are committed.
|
|
3 #
|
|
4 # See http://travis-ci.org/ for details
|
|
5 language: python
|
|
6
|
|
7 before_install:
|
|
8 - sudo apt-get install -y python-virtualenv
|
|
9 - virtualenv planemo-venv
|
|
10 - . planemo-venv/bin/activate
|
|
11 - pip install --upgrade pip setuptools
|
|
12 - pip install planemo
|
|
13 - planemo conda_init
|
|
14
|
|
15 install:
|
|
16 - planemo conda_install ${TRAVIS_BUILD_DIR}
|
|
17
|
|
18 script:
|
|
19 - planemo test --install_galaxy --no_cache_galaxy --conda_dependency_resolution ${TRAVIS_BUILD_DIR} |