Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
run: |-
python -m pip install pip uv -U
python -m uv pip install -r pyproject.toml --extra tests
python -m uv pip install -r requirements/runtime.txt
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Erotemic is this the place (and only place) I needed to add this?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You also need it in the test_purepy_wheels section after python -m uv pip install --prerelease=allow "aiq-magnet[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse. There are tow paths for testing the source dist and the wheel dist.

- name: Build sdist
shell: bash
run: |-
Expand Down
12 changes: 0 additions & 12 deletions magnet/backends/helm/magnet_run_helm.py

This file was deleted.

3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ docs = [
magnet = "magnet.__main__:main"
magnet-helm-run = "magnet.backends.helm.magnet_run_helm:main"

[project.entry-points.helm]
run_specs = "magnet.backends.helm.run_specs"

[tool.pytest.ini_options]
addopts = "--xdoctest --xdoctest-style=google --ignore-glob=docs"
norecursedirs = ".git build __pycache__ dev docs dockerfiles"
Expand Down
1 change: 1 addition & 0 deletions requirements/runtime.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
crfm-helm @ git+https://github.com/AIQ-Kitware/helm@kitware-main
Loading