-
Notifications
You must be signed in to change notification settings - Fork 42
/
.travis.yml
35 lines (29 loc) · 902 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
sudo: false
language: python
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- env: PYTHON_VERSION="3.6" SKLEARN_VERSION="0.22"
- env: PYTHON_VERSION="3.11" SKLEARN_VERSION="1.2"
install:
# install miniconda
- deactivate
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- MINICONDA_PATH=/home/travis/miniconda
- chmod +x miniconda.sh && ./miniconda.sh -b -p $MINICONDA_PATH
- export PATH=$MINICONDA_PATH/bin:$PATH
- conda update --yes conda
# create the testing environment
- conda create -n testenv --yes python=$PYTHON_VERSION pip
- source activate testenv
- conda install --yes -c conda-forge scikit-learn==$SKLEARN_VERSION
- pip install codecov cython nose pytest pytest-cov
- pip install .
script:
- mkdir for_test
- cd for_test
- pytest -v --cov=tscv --pyargs tscv
after_success:
- codecov