Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,6 @@ jobs:
micromamba list
pip list

- name: Check links
if: ${{ matrix.rdkit == true && matrix.openeye == true }}
run: pytest -r fE --tb=short openff/toolkit/_tests/test_links.py

- name: Run mypy
# When possible re-enable this with OE+RDK=True, but for now rdkit builds often have bugs
# in stubs and there are other subtleties (in the source code and builds) that reduce the number
Expand Down Expand Up @@ -175,3 +171,7 @@ jobs:
files: ./coverage.xml
disable_search: true
fail_ci_if_error: true

- name: Check links
if: ${{ matrix.rdkit == true && matrix.openeye == true }}
run: pytest -r fE --tb=short openff/toolkit/_tests/test_links.py
2 changes: 1 addition & 1 deletion devtools/conda-envs/openeye-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- openff-amber-ff-ports >=0.0.3
- openff-units
- openff-utilities >=0.1.5
- openff-interchange-base =0.4
- openff-interchange-base >=0.5
# No idea why this is necessary, see https://github.com/openforcefield/openff-toolkit/pull/1821
- nomkl
- openff-nagl-base >=0.4.0
Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/openeye.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- openff-units
- openff-amber-ff-ports
- openff-utilities >=0.1.5
- openff-interchange-base =0.4
- openff-interchange-base >=0.5
- openff-nagl-base =0.4.0
- openff-nagl-models >=0.3.0
- typing_extensions
Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/rdkit-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- openff-amber-ff-ports >=0.0.3
- openff-units
- openff-utilities >=0.1.5
- openff-interchange-base =0.4
- openff-interchange-base >=0.5
# No idea why this is necessary, see https://github.com/openforcefield/openff-toolkit/pull/1821
- nomkl
- openff-nagl-base >=0.4.0
Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/rdkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- openff-units
- openff-amber-ff-ports
- openff-utilities >=0.1.5
- openff-interchange-base =0.4
- openff-interchange-base >=0.5
- openff-nagl-base >=0.4.0
- openff-nagl-models >=0.3.0
- typing_extensions
Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- openff-units
- openff-amber-ff-ports
- openff-utilities >=0.1.5
- openff-interchange-base =0.4
- openff-interchange-base >=0.5
- openff-nagl-base >=0.4.0
- openff-nagl-models >=0.3.0
- typing_extensions
Expand Down
Loading