-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trim generated .travis.yml by fetching install script dynmically.
Not sure of the wisdom of this - one one hand we can fix things in planemo as time goes on and that is good and may prove needed since we are targeting galaxy-central. On the other hand this is less tweakable and may in fact be more likely to break - hard to say. Example of workin generated .travis.yml file here jmchilton/bwa-mem@c7a5133.
- Loading branch information
Showing
3 changed files
with
22 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
__version__ = '0.0.1' | ||
|
||
|
||
PROJECT_NAME = "planemo" | ||
PROJECT_USERAME = "jmchilton" | ||
RAW_CONTENT_URL = "https://raw.github.com/%s/%s/master/" % ( | ||
PROJECT_USERAME, PROJECT_NAME | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
sudo apt-get install -y python-virtualenv | ||
virtualenv planemo-venv | ||
. planemo-venv/bin/activate | ||
pip install git+https://github.com/jmchilton/planemo.git | ||
planemo travis_before_install | ||
. ${TRAVIS_BUILD_DIR}/.travis/env.sh # source enviornment created by planemo | ||
planemo test --install_galaxy ${TRAVIS_BUILD_DIR} |