forked from CGATOxford/UMI-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (36 loc) · 1 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
language: python
sudo: required
matrix:
include:
- os: osx
language: generic
env: TEST_HELP=1
- os: linux
sudo: required
python: 2.7
env: TEST_FUNCTIONALITY=1
- os: linux
sudo: required
python: 3.5
env: TEST_FUNCTIONALITY=1
- os: linux
sudo: required
python: 3.5
env: TEST_STYLE=1
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install freetype; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then virtualenv venv -p python3; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source venv/bin/activate; fi
- pip install cython
- pip install pandas==0.19
- pip install scipy
install:
- python setup.py install
before_script:
- pip install nose
- pip install pep8
- pip install pyyaml
script:
- ./test_umi_tools.sh