forked from conda/conda-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (32 loc) · 1005 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: python
python:
# We don't actually use the system Python but this keeps it organized.
- "2.7"
- "3.3"
- "3.4"
env:
-
install:
# TODO: Use a "latest" url
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.5.2-Linux-x86_64.sh -O miniconda.sh;
elif [[ "$TRAVIS_PYTHON_VERSION" == "3.3" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda3-3.0.0-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-3.5.2-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes
- conda install pytest requests patchelf
- python setup.py install
- conda info -a
script:
- py.test tests
- tests/test-recipes/build_recipes.sh
- tests/test-skeleton/test-skeleton.sh
notifications:
flowdock: ef3821a08a791106512ccfc04c92eccb
git:
depth: 10000