-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
42 lines (38 loc) · 1.26 KB
/
.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
41
42
language: python
sudo: required
python:
- 3.5
before_install:
- set -e
- sudo apt-get update -q
- set -x; sudo apt-get install -y -q elastix
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-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 update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
- conda install -c simpleitk simpleitk pip numpy scipy
- conda install -c conda-forge tifffile
- conda install -c anaconda requests
- conda install -c babbel google-apitools
- pip install tornado==4.5.3
- pip install --progress-bar off -r requirements.txt
- pip install --progress-bar off --editable .
- pip install --progress-bar off nose
script:
- nosetests tests --ignore-files="test_calculate_intensity_in_regions.py"
- count-points-in-region --help
- crop-coordinates --help
- nuggt --help
- nuggt-align --help
- nuggt-display --help
- make-alignment-file --help
- rescale-alignment-file --help
- sitk-align --help
- yea-nay --help