-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73c7a33
commit c7d7d0c
Showing
6 changed files
with
85 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
sudo: true | ||
language: python | ||
python: | ||
- "2.7" | ||
#- "3.3" | ||
install: | ||
- env | sort | ||
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh | ||
- bash miniconda.sh -b -p $HOME/miniconda | ||
- export PATH="$HOME/miniconda/bin:$PATH" | ||
- hash -r | ||
- conda config --set always_yes yes --set changeps1 no | ||
- conda config --add channels dsdale24 | ||
- conda update -q conda | ||
- conda info -a | ||
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION mock numpy pip | ||
- source activate test-environment | ||
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then | ||
conda install h5py | ||
sudo apt-get update -qq; | ||
sudo apt-get install -y python-gtk2 wget; | ||
export SITE_PACKAGES="$HOME/miniconda/envs/test-environment/lib/python$TRAVIS_PYTHON_VERSION/site-packages/"; | ||
ln -s /usr/lib/python2.7/dist-packages/glib/ $SITE_PACKAGES; | ||
ln -s /usr/lib/python2.7/dist-packages/gobject/ $SITE_PACKAGES; | ||
ln -s /usr/lib/python2.7/dist-packages/gtk-2.0* $SITE_PACKAGES; | ||
ln -s /usr/lib/python2.7/dist-packages/pygtk.pth $SITE_PACKAGES; | ||
ln -s /usr/lib/python2.7/dist-packages/cairo $SITE_PACKAGES; | ||
fi | ||
- pip install behave "colormath>=2.1.0" coverage coveralls nose-exclude | ||
- wget http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz | ||
- mkdir ffmpeg | ||
- tar xf ffmpeg-release-64bit-static.tar.xz --strip-components 1 -C ffmpeg | ||
- export PATH=$TRAVIS_BUILD_DIR/ffmpeg:$PATH | ||
script: | ||
- coverage run --source toyplot --omit toyplot/testing.py -m nose --exclude-dir toyplot | ||
- coverage run --append --source toyplot --omit toyplot/testing.py -m behave | ||
- coverage report | ||
- python backend-report.py | ||
after_script: | ||
- coveralls |
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 @@ | ||
python setup.py install |
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,27 @@ | ||
package: | ||
name: ipyrad | ||
version: {{ environ['GIT_DESCRIBE_TAG'] }} | ||
|
||
source: | ||
git_url: ../ | ||
|
||
build: | ||
script: python setup.py install | ||
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} | ||
|
||
requirements: | ||
build: | ||
- ipython | ||
- ipyparallel | ||
- cython | ||
- scipy | ||
- numpy >=1.7 | ||
- h5py | ||
run: | ||
- numpy >=1.7 | ||
|
||
|
||
about: | ||
home: http://github.com/dereneaton/ipyrad | ||
license: GPLv3 | ||
summary: Interactive assembly and analysis of RAD-seq data sets. |
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