forked from materialsproject/pymatgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
25 lines (25 loc) · 923 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
language: python
python:
- "3.5"
env:
global:
- secure: "LQDypjfjcQYVN1NYPYfBz1VqMSqjNQqEqGBp+R6u/opf8bRUtYUGdK1gR356U3ApPzgLl906M3rI2ZMNqxiROdB6RDZrDEzXLhushwCfqt0C9qmZFLsj7TtGCMT8qHahU/sfYKntYxlWDgTbvFVrHhmg6brWEObPYny5FUidJc4="
- PATH=$PATH:`pwd`/cmd_line/enum/Linux_64bit:`pwd`/cmd_line/bader/Linux_64bit:`pwd`/cmd_line/gulp/Linux_64bit:`pwd`/cmd_line/aconvasp/Linux_64bit
- GULP_LIB=`pwd`/cmd_line/gulp/Libraries
# command to install dependencies
sudo: false
install:
- travis_wait pip install -q -r requirements.txt
- travis_wait pip install -q -r requirements-optional.txt
# This is needed, otherwise, nosetests can't find the installed pymatgen C
# extensions.
before_script:
- python setup.py develop
# command to run tests, e.g. python setup.py test
script: nosetests -v pymatgen
notifications:
email:
recipients:
on_success: change
on_failure: always