Skip to content

Commit 7dd6b67

Browse files
authored
remove cover alls (AtsushiSakai#353)
1 parent b19476f commit 7dd6b67

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.travis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: python
2+
3+
matrix:
4+
include:
5+
- os: linux
6+
7+
python:
8+
- 3.8
9+
10+
before_install:
11+
- sudo apt-get update
12+
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
13+
- chmod +x miniconda.sh
14+
- bash miniconda.sh -b -p $HOME/miniconda
15+
- export PATH="$HOME/miniconda/bin:$PATH"
16+
- hash -r
17+
- conda config --set always_yes yes --set changeps1 no
18+
- conda config --append channels conda-forge
19+
- conda update -q conda
20+
# Useful for debugging any issues with conda
21+
- conda info -a
22+
23+
install:
24+
- conda install numpy
25+
- conda install scipy
26+
- conda install matplotlib
27+
- conda install pandas
28+
- conda install cvxpy
29+
- conda install coveralls
30+
31+
script:
32+
- python --version
33+
34+
after_success:
35+
- coveralls

0 commit comments

Comments
 (0)