From f4275b1d906c6df2a3883b42688fae6194ea7e17 Mon Sep 17 00:00:00 2001 From: Andrew Quirke Date: Tue, 12 Nov 2024 09:54:43 -0500 Subject: [PATCH] adding new step for windows debug --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 852c91f4..2423fc6f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,10 +53,14 @@ jobs: cache-downloads: true create-args: >- python=${{ matrix.python-version }} - + - name: Install library run: python -m pip install --no-deps --no-build-isolation -e . -v # `-e` required for correct `coverage` run. + - name: Debug Windows Testing + run: mamba install rdkit=2024.03.4 + if: matrix.os == 'windows-latest' + - name: Run tests run: | export PATH="$CONDA_PREFIX/Library/bin:$PATH"