forked from MolSSI-Education/MM_2017_SSS_Team2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (32 loc) · 943 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
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
# Run jobs on container-based infrastructure, can be overridden per job
sudo: false
matrix:
- python: 3.5
before_install:
- uname -a
- free -m
- df -h
- ulimit -a
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda create -n sss python=3.5 psi4 pytest numpy lawrap cmake scipy numexpr mkl-include gcc-5-mp pytest-cov -c intel -c psi4/label/dev -c psi4
- source activate sss
- conda list
before_script:
- python -V
script:
- pip install -e .
- py.test -v --cov=./
after_success:
- codecov
notifications:
email: false