-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
42 lines (38 loc) · 898 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
41
42
language: python
sudo: required
os: linux
dist: bionic
compiler: gcc
python:
- "3.7"
before_install:
- chmod +x ./.travis/travis_before_install.sh
- ./.travis/travis_before_install.sh
- export PATH=$HOME/miniconda/bin:$PATH
- conda update --all -y
- conda config --add channels defaults
- conda config --add channels bioconda
- conda config --add channels conda-forge
- conda install vg -y
install:
- pip3 install Cython
- pip3 install setuptools
- pip3 install wheel
- pip3 install pandas
- pip3 install numpy
- pip3 install statsmodels
- pip3 install sphinx
- pip3 install numba
- pip3 install colorama
- pip3 install pytest
- installationpath=$PWD
- echo $installationpath
- python3 setup.py install
- cd tests
- installationpath=$PWD
- echo $installationpath
script:
- grafimo -h
- grafimo --version
- grafimo --help
- pytest