forked from DataCanvasIO/DeepTables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (35 loc) · 807 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
36
37
38
39
40
41
language: python
python:
# - "3.5" TF 2.0.0b1
- "3.6"
- "3.7"
env:
- TF_VERSION=2.0.0
- TF_VERSION=2.1.0
- TF_VERSION=2.2.0
- TF_VERSION=2.3.0
- TF_VERSION=2.3.1
- TF_VERSION=2.4.0
cache: pip
# command to install dependencies
install:
- pip install -q tensorflow==$TF_VERSION
- pip install git+https://github.com/DataCanvasIO/Hypernets
- pip install "dask[complete]"
- pip install -r requirements.txt
- pip install -q pytest-cov==2.4.0
- pip install -q python-coveralls
- pip install -q codacy-coverage
# command to run tests
script:
- pytest --cov=deeptables
notifications:
recipients:
on_success: change
on_failure: change
after_success:
- coveralls
- coverage xml
- python-codacy-coverage -r coverage.xml