Skip to content

Commit 5132325

Browse files
authored
Create .travis.yml
1 parent 7bc065f commit 5132325

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: python
2+
3+
os:
4+
- linux
5+
6+
python:
7+
- 3.6
8+
- 3.6-dev
9+
- 3.7-dev
10+
11+
cache: pip
12+
13+
before_cache:
14+
- rm -f $HOME/.cache/pip/log/debug.log
15+
16+
17+
install:
18+
- pip install virtualenv --upgrade
19+
- pip install -r requirements.txt
20+
- pip install -r requirements-dev.txt
21+
- pip install .
22+
23+
script:
24+
- coverage run -m pytest --cov=gdax
25+
26+
notifications:
27+
email: false

0 commit comments

Comments
 (0)