forked from JeffersonLab/PyPWA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (36 loc) · 858 Bytes
/
.travis.yml
File metadata and controls
36 lines (36 loc) · 858 Bytes
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
sudo: false
dist: xenial
language: python
cache: pip
python:
- "3.7"
- "3.8-dev"
matrix:
allow_failures:
- python: "3.8-dev"
addons:
apt:
packages:
- "build-essential"
- "gfortran"
- "libatlas-base-dev"
- "libopenblas-dev"
- "liblapack-dev"
- "python-dev"
- "cython"
before_install:
- "pip install --upgrade pip setuptools wheel"
- "pip install --upgrade numpy scipy"
- "pip install --upgrade iminuit nestle ruamel.yaml tabulate appdirs"
- "pip install --upgrade fuzzywuzzy python-Levenshtein"
- "pip install --upgrade coveralls coverage"
- "pip install --upgrade pytest pytest-runner pytest-cov"
install:
- "pip install --upgrade -e ."
script: "pytest --cov=PyPWA tests --cov-report="
after_success:
- coveralls
notifications:
emails:
on_success: change
on_failure: change