forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (54 loc) · 1.14 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
# dist: xenial
language: python
os:
- linux
matrix:
include:
- dist: trusty
python: 2.7
env: PANDAS=0.22.0
- dist: trusty
python: 2.7
env: PANDAS=0.23.4
- dist: trusty
python: 2.7
env: PANDAS=0.24.2
- dist: trusty
python: 2.7
env: PANDAS=latest
- dist: trusty
python: 3.6
env: PANDAS=0.22.0
- dist: trusty
python: 3.6
env: PANDAS=0.23.4
- dist: trusty
python: 3.6
env: PANDAS=0.24.2
- dist: trusty
python: 3.6
env: PANDAS=latest
# - dist: xenial
# python: 3.7
# env: PANDAS=0.23.4
# - dist: xenial
# python: 3.7
# env: PANDAS=latest
addons:
postgresql: "9.4"
services:
- postgresql
- mysql
install:
# - ./travis-java.sh
- sudo apt-get install -y pandoc
- pip install --only-binary=numpy,scipy numpy scipy
- if [ "$PANDAS" = "latest" ]; then pip install pandas; else pip install pandas==$PANDAS; fi
- pip install -r requirements-dev.txt
before_script:
- psql -c 'create database test_ci;' -U postgres
- mysql -u root --password="" -e 'create database test_ci;'
script:
- pytest --cov=great_expectations tests/
after_success:
- coveralls