File tree Expand file tree Collapse file tree 1 file changed +9
-18
lines changed Expand file tree Collapse file tree 1 file changed +9
-18
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
- python :
3
- - " 3.7"
4
- before_install :
5
- # Install Latest version of Miniconda
6
- - wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
7
- - bash miniconda.sh -b -p $HOME/miniconda
8
- - source "$HOME/miniconda/etc/profile.d/conda.sh"
9
- - hash -r
10
- - conda config --set always_yes yes --set changeps1 no
11
- - conda update -q conda
12
- # Useful for debugging any issues with conda
13
- - conda info -a
14
- install :
15
- - conda config --add channels conda-forge
16
- - conda create --yes -n rtbtestenv python=$TRAVIS_PYTHON_VERSION --yes --file requirements.txt
17
- - conda activate rtbtestenv
18
- script :
19
- # your test script goes here
20
2
3
+ jobs :
4
+ include :
5
+ - python : 3.7
6
+
7
+ before_install :
8
+ - ./tools/travis-before-install.sh
9
+
10
+ script :
11
+ - ./tools/travis-test.sh
You can’t perform that action at this time.
0 commit comments