We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90dc934 commit 1b1aa99Copy full SHA for 1b1aa99
.github/workflows/test.yml
@@ -49,21 +49,18 @@ jobs:
49
with:
50
environment-file: ${{ env.ENV_FILE }}
51
environment-name: graphium
52
- cache-environment: false
+ cache-environment: true
53
cache-downloads: true
54
create-args: >-
55
python=${{ matrix.python-version }}
56
+ --force-reinstall
57
58
- name: Install library
59
run: python -m pip install --no-deps --no-build-isolation -e . -v # `-e` required for correct `coverage` run.
60
61
- name: Run tests
62
run: |
- # Print debug information
63
- echo "RDBASE: $RDBASE"
64
- echo "PATH: $PATH"
65
python -c "import rdkit; print('RDKit version:', rdkit.__version__)"
66
- micromamba list rdkit
67
pytest
68
69
- name: Test CLI
0 commit comments