forked from wmayner/pyphi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (32 loc) · 796 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
dist: xenial
language: python
sudo: false
branches:
only:
- master
- develop
- scratch
# Setup databases
services:
- mongodb # port 27017 (default)
- redis-server # port 6379 (default)
python:
- 3.6
- 3.7
- 3.8
# Install packages
install:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=scipy -r requirements.txt
- pip install coveralls
- pip freeze
# Run tests
script: coverage run --source=pyphi -m py.test --slow
after_success: coveralls
notifications:
email: false
slack:
rooms:
secure: "C6PSvK/FEmyD+S71VVzS29NZpD9CFI/f3UMjc6i08xYHjFNMZUplfHyUqNLNqgVVBsKR1En4B8ryuriEnM8wwZzCVdxjh7HDsx8aNE2z1XG5tkqoRP4ppNfqNaYRoMcSZFW89DfVNbIVDM11wKXL7/YnRCmlJy0p1NtKzlncXCM="
on_success: never
on_failure: always