-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
40 lines (36 loc) · 1008 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
36
37
38
39
40
# Based on http://conda.pydata.org/docs/travis.html
language: python
sudo: false # use container based build
notifications:
email: false
branches:
except:
- fix-docs
matrix:
fast_finish: true
include:
- python: 3.6
env: CONDA_ENV=py36
#- python: 3.8
# env: CONDA_ENV=py38
- python: 3.9
env: CONDA_ENV=py39
before_install:
- wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.9.2-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 --set show_channel_urls true
- conda update -q conda
- conda info -a
install:
- conda env create -n test_env --file ci/requirements-$CONDA_ENV.yml
- source activate test_env
- conda list
- pip install --no-deps -e .
script:
- python -OO -c "import sif_parser"
- python -OO -c "import sif_reader"
- py.test testings
- chmod +x ./testings/test_cli.sh
- ./testings/test_cli.sh