forked from CCQC/PES-Learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (40 loc) · 961 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
42
43
44
45
46
47
48
49
50
# After changing this file, you can check it on:
# http://lint.travis-ci.org/
language: python
# Run jobs on container-based infrastructure, can be overridden per job
sudo: false
matrix:
include:
- python: 3.5
- python: 3.6
before_install:
# Get local information about the machine
- uname -a
- free -m
- df -h
- ulimit -a
- python -V
- pip install --upgrade pip setuptools
# Install various required modules
- pip install pytest-cov
- python setup.py install
# - pip install codecov
# - pip install numpy
# - pip install pandas
# - pip install cclib
# - pip install keras
# - pip install tensorflow
# - pip install -U scikit-learn
# - pip install hyperopt
# - pip install matplotlib
# - pip install GPy
# Install the plugin locally
- pip install -e .
script:
- py.test -v tests/ --cov=peslearn
# after_success:
# - ./tools/travis-upload-wheel.sh
notifications:
email: false
after_success:
- codecov