Skip to content

Commit d5649b8

Browse files
author
Josh Horton
authored
Exclude qcarchive example if no rdkit.
1 parent 11fd6f1 commit d5649b8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,17 @@ script:
9595
pytest --ignore=utilities --ignore=examples/deprecated --ignore=docs
9696
--ignore=devtools --doctest-modules --nbval-lax --cov=openforcefield
9797
--cov-config=setup.cfg;
98-
elif [[ "$OPENEYE" == true ]];
98+
elif [[ "$RDKIT" == false && "$OPENEYE" == true ]];
9999
then
100100
pytest --ignore=utilities --ignore=examples/deprecated --ignore=docs
101101
--ignore=devtools --ignore=examples/check_dataset_parameter_coverage
102+
--ignore=examples/QCArchive_interface
102103
--nbval-lax --cov=openforcefield --cov-config=setup.cfg;
103-
else
104+
elif [[ "$RDKIT" == true && "$OPENEYE" == false ]];
105+
then
104106
pytest --ignore=utilities --ignore=examples/deprecated
105107
--nbval-lax --cov=openforcefield --cov-config=setup.cfg;
108+
106109
fi
107110

108111
# Raise a fuss if cron jobs break

0 commit comments

Comments
 (0)