Feature: Support spinning a single metaflow step (Rebased)#2506
Merged
Conversation
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
| # queries on that same TaskDatastore will be quick (since we already | ||
| # have all the metadata) | ||
| self._task_metadata_caches = OrderedDict() | ||
| # have all the metadata). We keep track of this in a file so it persists |
Contributor
There was a problem hiding this comment.
I wonder if same should be done for self._store_caches? which is right now an OrderedDict
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 23, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
mt-ob
reviewed
Jul 24, 2025
talsperre
force-pushed
the
dev/spin-rec-rebased
branch
from
August 25, 2025 07:40
4e80bfa to
94aa6d6
Compare
talsperre
force-pushed
the
dev/spin-rec-rebased
branch
3 times, most recently
from
September 4, 2025 01:02
e785d31 to
4d0ad94
Compare
romain-intel
left a comment
Contributor
There was a problem hiding this comment.
Some smallish comment with maybe a small concern around the transfer of artifacts.
talsperre
force-pushed
the
dev/spin-rec-rebased
branch
3 times, most recently
from
October 21, 2025 20:04
241af68 to
3a36e8b
Compare
romain-intel
force-pushed
the
dev/spin-rec-rebased
branch
from
October 22, 2025 06:40
8652c80 to
e15c14d
Compare
talsperre
added a commit
that referenced
this pull request
May 31, 2026
) ## Summary Remove duplicate `--use-latest` pytest option registration that prevents the unit test suite from collecting. ## Problem Running `pytest test/unit/` fails during collection with: ``` ValueError: option names {'--use-latest'} already added ``` `--use-latest` is registered in both `test/unit/conftest.py` (added in #3040) and `test/unit/spin/conftest.py` (from #2506). pytest raises on the duplicate. ## Fix Remove `pytest_addoption` from `test/unit/spin/conftest.py`. The root `test/unit/conftest.py` already registers the option and it applies to all subdirectories. ## Testing | State | Result | |-------|--------| | Before | `pytest test/unit/` fails with collection error | | After | 468 passed, 1 failed, 19 skipped, 21 errors | > **Note:** The 1 failure (`complex_dag`) and 21 errors (`secrets`/`system_context` tests) are pre-existing infrastructure issues unrelated to this change. --------- Co-authored-by: Shashank Srikanth <[email protected]> Co-authored-by: Claude Opus 4.8 (1M context) <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To test
spinon a new flow you can do the following:Simple case:
Pass in specific pathspec:
Pass in custom artifacts via module:
Skip decorators (including the whitelisted ones):
Use with Runner API:
See the tests for more examples on hot to use this command.