From 0ab45600f1ae166fea9ee05ba6973696852b38c0 Mon Sep 17 00:00:00 2001 From: Jeffrey Wagner Date: Wed, 13 Nov 2024 08:34:45 -0800 Subject: [PATCH] skip external examples in conda tests due to parmed incompatibility --- .github/workflows/conda.yml | 3 ++- devtools/conda-envs/conda.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 8513cf2f6..1aee4c9f8 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -134,4 +134,5 @@ jobs: - name: Run example notebooks run: | - python -m pytest -r fE -v -x --tb=short --nbval-lax --ignore=examples/deprecated examples + # External examples are temporarily skipped due to parmed incompatibility https://github.com/openforcefield/openff-toolkit/issues/1532 + python -m pytest -r fE -v -x --tb=short --nbval-lax --ignore=examples/deprecated --ignore=examples/external examples diff --git a/devtools/conda-envs/conda.yaml b/devtools/conda-envs/conda.yaml index 0c64bc009..21f20bd45 100644 --- a/devtools/conda-envs/conda.yaml +++ b/devtools/conda-envs/conda.yaml @@ -8,4 +8,5 @@ dependencies: - pytest=7.4 - pytest-rerunfailures - nbval - - parmed=3 + # https://github.com/openforcefield/openff-toolkit/issues/1532 + #- parmed=3 \ No newline at end of file