-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
.travis.yml
40 lines (32 loc) · 866 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
language: python
sudo: true
fast_finish: true
matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
dist: xenial
sudo: true
before_install:
- sudo apt-get install libsnappy-dev zlib1g-dev libbz2-dev cmake-data cmake gcc libedit-dev -qq
install:
- if [[ $TRAVIS_PYTHON_VERSION != "2.7" ]]; then pip install 'fsspec>=0.3.3'; fi
- pip install python-snappy
- pip install Cython
- pip install -r requirements.txt
- pip install .
script:
- nosetests
after_success:
- coveralls
branches:
only:
- main
notifications:
slack: tradologics:HcnS6XusfcuS02waQPCG18oc
webhooks:
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always