Skip to content

Commit

Permalink
CI for NWChem (#212)
Browse files Browse the repository at this point in the history
* nwcci: take 1

* nwcci: take 2

* nwcci: take 3
  • Loading branch information
loriab committed Jan 7, 2020
1 parent fd086f6 commit e370e86
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
1 change: 0 additions & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ coverage:
- qcengine/programs/util/.*
- qcengine/programs/cfour/.*
- qcengine/programs/gamess/.*
- qcengine/programs/nwchem/.*
- setup.py
status:
patch: false
Expand Down
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ matrix:
- PYTHON_VER=3.6
- PROG=OPENMM

- os: linux
addons: &1
apt:
packages:
- nwchem
env:
- PYTHON_VER=3.6
- PROG=NWCHEM

before_install:
# Additional info about the build
- uname -a
Expand All @@ -51,6 +60,8 @@ install:
python devtools/scripts/conda_env.py -n=test -p=$PYTHON_VER devtools/conda-envs/torchani.yaml
elif [ $PROG == "OPENMM" ]; then
python devtools/scripts/conda_env.py -n=test -p=$PYTHON_VER devtools/conda-envs/openmm.yaml
elif [ $PROG == "NWCHEM" ]; then
python devtools/scripts/conda_env.py -n=test -p=$PYTHON_VER devtools/conda-envs/nwchem.yaml
else
echo "ERROR: No match for PROG ($PROG)."
exit 1
Expand Down
17 changes: 17 additions & 0 deletions devtools/conda-envs/nwchem.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test
channels:
- conda-forge
dependencies:
# Core
- python
- pyyaml
- py-cpuinfo
- psutil
- qcelemental >=0.12.0
- pydantic>=1.0.0
- networkx>=2.4.0

# Testing
- pytest
- pytest-cov
- codecov

0 comments on commit e370e86

Please sign in to comment.