Skip to content

Commit

Permalink
add rx to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
RMeli committed Mar 7, 2024
1 parent 2d490c5 commit 9d46921
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
chemlib: [obabel, rdkit]
graphlib: [nx, gt, all]
graphlib: [nx, gt, rx, all]
exclude:
# graph-tools does not work on Windows
- {os: "windows-latest", graphlib: "gt"}
Expand Down
26 changes: 26 additions & 0 deletions devtools/conda-envs/spyrmsd-test-obabel-rx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: spyrmsd
channels:
- conda-forge
dependencies:
# Base
- python
- setuptools

# Maths
- numpy
- scipy
- rustworkx

# Chemistry
- openbabel

# Testing
- pytest
- pytest-cov
- pytest-benchmark

# Dev
- mypy
- flake8
- black
- codecov
27 changes: 27 additions & 0 deletions devtools/conda-envs/spyrmsd-test-rdkit-rx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: spyrmsd
channels:
- conda-forge
- rdkit
dependencies:
# Base
- python
- setuptools

# Maths
- numpy
- scipy
- rustworkx

# Chemistry
- rdkit

# Testing
- pytest
- pytest-cov
- pytest-benchmark

# Dev
- mypy
- flake8
- black
- codecov

0 comments on commit 9d46921

Please sign in to comment.