Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ language: python
sudo: false
cache: pip
language: python
env:
global:
- SKGGM_VERSION=a0ed406586c4364ea3297a658f415e13b5cbdaf8
matrix:
include:
- name: "Pytest python 2.7 with skggm"
Expand All @@ -10,7 +13,7 @@ matrix:
- sudo apt-get install liblapack-dev
- pip install --upgrade pip pytest
- pip install wheel cython numpy scipy codecov pytest-cov scikit-learn
- pip install git+https://github.com/skggm/skggm.git@a0ed406586c4364ea3297a658f415e13b5cbdaf8;
- pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION};
script:
- pytest test --cov;
after_success:
Expand All @@ -31,7 +34,7 @@ matrix:
- sudo apt-get install liblapack-dev
- pip install --upgrade pip pytest
- pip install wheel cython numpy scipy codecov pytest-cov scikit-learn
- pip install git+https://github.com/skggm/skggm.git@a0ed406586c4364ea3297a658f415e13b5cbdaf8;
- pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION};
script:
- pytest test --cov;
after_success:
Expand All @@ -42,7 +45,7 @@ matrix:
- sudo apt-get install liblapack-dev
- pip install --upgrade pip pytest
- pip install wheel cython numpy scipy codecov pytest-cov scikit-learn
- pip install git+https://github.com/skggm/skggm.git@a0ed406586c4364ea3297a658f415e13b5cbdaf8;
- pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION};
script:
- pytest test --cov;
after_success:
Expand Down