Skip to content

Add sequential output tests#120

Merged
leynos merged 4 commits intomainfrom
codex/extend-tests-for-parallel-execution
Jul 23, 2025
Merged

Add sequential output tests#120
leynos merged 4 commits intomainfrom
codex/extend-tests-for-parallel-execution

Conversation

@leynos
Copy link
Copy Markdown
Owner

@leynos leynos commented Jul 21, 2025

Summary

  • add tests asserting file order is preserved on stdout
  • print parallel errors without dropping results
  • include file path context in file handling errors

Testing

  • make fmt
  • make lint
  • make test
  • make markdownlint
  • make nixie

https://chatgpt.com/codex/tasks/task_e_687ec4bbb08083229853a0c53fcdf1cd

Summary by Sourcery

Implement sequential result handling for parallel file operations with enriched error context and add tests to verify output order and error messages.

Enhancements:

  • Enrich file read/write errors with contextual file path information
  • Collect parallel processing results to preserve sequential output order and print all errors before exiting

Documentation:

  • Mark extension of parallel execution tests as completed in the roadmap

Tests:

  • Add rstest-based tests for parallel CLI processing to verify ordered outputs and missing-file error handling

@sourcery-ai
Copy link
Copy Markdown
Contributor

sourcery-ai Bot commented Jul 21, 2025

Reviewer's Guide

This PR enhances error context, refactors parallel processing to collect results and print outputs/errors sequentially (preserving file order), adds comprehensive parallel CLI tests, and updates the roadmap documentation.

Sequence diagram for sequential output and error handling in parallel file processing

sequenceDiagram
    participant User as actor User
    participant CLI as CLI Main
    participant FileHandler as handle_file
    participant Stdout as Stdout
    participant Stderr as Stderr

    User->>CLI: Run CLI with multiple files (not in-place)
    CLI->>FileHandler: handle_file(file1)
    CLI->>FileHandler: handle_file(file2)
    CLI->>FileHandler: handle_file(file3)
    Note over CLI,FileHandler: Files processed in parallel
    FileHandler-->>CLI: Result (Ok(Some(output)) or Err(error))
    loop For each file in input order
        CLI->>Stdout: Print output (if Ok)
        CLI->>Stderr: Print error (if Err)
    end
    CLI-->>User: Exit (with error if any file errored)
Loading

Class diagram for enhanced error context in file handling

classDiagram
    class CLI {
        +Vec<Path> files
        +bool in_place
        +FormatOpts opts
    }
    class FileHandler {
        +handle_file(path: &Path, in_place: bool, opts: FormatOpts) -> Result<Option<String>>
    }
    class ErrorContext {
        +with_context(msg: String)
    }
    CLI --> FileHandler : uses
    FileHandler ..> ErrorContext : adds context to errors
Loading

File-Level Changes

Change Details Files
Enrich file I/O errors with context
  • Wrap read_to_string with with_context to include file path
  • Wrap write calls with with_context to report target path
src/main.rs
Refactor parallel processing to preserve output order
  • Collect results from par_iter instead of using try_for_each or flatten
  • Iterate sequentially over results to print successes and errors in input order
  • Capture and return first error after emitting all messages
src/main.rs
Add sequential output and error tests for parallel CLI
  • Introduce test for multiple files preserving stdout order
  • Add test verifying missing-file error prints stderr and returns failure
  • Add in-place mode test for handling missing file failure
tests/parallel.rs
Update documentation roadmap
  • Mark parallel execution tests as completed in roadmap
docs/parallel-processing-roadmap.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Jul 21, 2025

Warning

Rate limit exceeded

@leynos has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 9 minutes and 25 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between d2aea25 and ee559f5.

📒 Files selected for processing (1)
  • tests/parallel.rs (1 hunks)

Summary by CodeRabbit

  • New Features
    • Improved error reporting for file processing, providing clearer context when errors occur.
    • Centralised error handling for parallel file operations.
  • Bug Fixes
    • Enhanced robustness when handling missing files during parallel processing.
  • Tests
    • Added comprehensive tests for parallel CLI processing, including scenarios with multiple files, empty file lists, and missing files.
    • Introduced a new utility for running CLI commands in tests.

Walkthrough

Update the documentation checklist to mark parallel test extension as complete. Refactor the main file processing logic to centralise error handling and reporting with contextual information. Add a utility for running CLI commands in tests. Introduce new integration tests to verify parallel CLI behaviour, including error scenarios and in-place file edits.

Changes

File(s) Change Summary
docs/parallel-processing-roadmap.md Marked "Extend tests for parallel execution" as completed in the roadmap checklist.
src/main.rs Refactored parallel file processing: added report_results for unified error handling and improved context.
tests/common/mod.rs Added run_cli_with_args helper to run CLI with arguments for integration tests.
tests/parallel.rs Added new integration tests for parallel CLI execution, error handling, and in-place editing scenarios.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant CLI
    participant FileSystem

    User->>CLI: Invoke with multiple files (possibly --in-place)
    CLI->>CLI: Process files in parallel
    loop For each file
        CLI->>FileSystem: Read file (with context)
        alt Error reading
            CLI->>CLI: Record error with file context
        else Success
            CLI->>CLI: Reflow table
            alt --in-place
                CLI->>FileSystem: Write file (with context)
                alt Error writing
                    CLI->>CLI: Record error with file context
                end
            else
                CLI->>User: Print reflowed content
            end
        end
    end
    CLI->>User: Report all errors (if any), return first error or success
Loading

Estimated code review effort

2 (~15 minutes)

Possibly related PRs

Poem

Parallel files, a dance in the night,
Errors now gathered, all brought to light.
With context and order, the code stands tall,
Tests check the edges, no bug left to crawl.
Mark the checklist—another goal won,
The table fixer’s journey goes on!
🛠️✨

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch codex/extend-tests-for-parallel-execution

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Copy Markdown
Contributor

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

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

Hey @leynos - I've reviewed your changes and they look great!

Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments

### Comment 1
<location> `tests/parallel.rs:12` </location>
<code_context>
+fn test_cli_parallel_multiple_files() {
</code_context>

<issue_to_address>
Consider adding a test for empty file list input.

Adding this test will help verify that the CLI handles empty input without errors or unexpected behavior.

Suggested implementation:

```rust

#[rstest]
fn test_cli_parallel_empty_file_list() {
    // Simulate calling the CLI with an empty file list.
    // This test ensures the CLI handles empty input gracefully.
    let args: Vec<&str> = vec![];
    let output = run_cli_with_args(args);
    // Adjust the assertion below to match the expected behavior of your CLI.
    // For example, if the CLI should print nothing or a specific message, assert that.
    assert!(output.is_empty() || output.contains("No files provided") || output.contains("Usage"), "CLI did not handle empty file list as expected");
}

#[rstest]
fn test_cli_parallel_multiple_files() {

```

- Ensure that a helper function like `run_cli_with_args` exists and is used for invoking the CLI with arguments. If it does not exist, you will need to implement it or adapt the test to your CLI invocation method.
- Adjust the assertion in the new test to match the actual expected output or error message of your CLI when no files are provided.
</issue_to_address>

### Comment 2
<location> `tests/parallel.rs:72` </location>
<code_context>
+}
+
+#[rstest]
+fn test_cli_parallel_missing_file_in_place(broken_table: Vec<String>) {
+    let dir = tempdir().expect("failed to create temporary directory");
+    let good = dir.path().join("good.md");
+    let mut f = File::create(&good).expect("failed to create file");
+    for line in &broken_table {
+        writeln!(f, "{line}").expect("failed to write line");
+    }
+    f.flush().expect("failed to flush file");
+    drop(f);
+    let missing = dir.path().join("missing.md");
+
+    Command::cargo_bin("mdtablefix")
+        .expect("failed to create command")
+        .arg("--in-place")
+        .arg(&good)
+        .arg(&missing)
+        .assert()
+        .failure();
+}
</code_context>

<issue_to_address>
Consider asserting on the error message content for in-place failures.

Asserting that the error message contains the missing file's name will help ensure users get clear, actionable feedback.
</issue_to_address>

<suggested_fix>
<<<<<<< SEARCH
    Command::cargo_bin("mdtablefix")
        .expect("failed to create command")
        .arg("--in-place")
        .arg(&good)
        .arg(&missing)
        .assert()
        .failure();
=======
    let output = Command::cargo_bin("mdtablefix")
        .expect("failed to create command")
        .arg("--in-place")
        .arg(&good)
        .arg(&missing)
        .output()
        .expect("failed to run command");

    assert!(!output.status.success());
    assert!(String::from_utf8_lossy(&output.stderr).contains("missing.md"));
>>>>>>> REPLACE

</suggested_fix>

### Comment 3
<location> `src/main.rs:135` </location>
<code_context>
+            .map(|p| handle_file(p, true, cli.opts).map(|_| ()))
+            .collect();
+
+        let mut first_err: Option<anyhow::Error> = None;
+        for res in results {
+            if let Err(e) = res {
</code_context>

<issue_to_address>
Consider extracting the repeated error-handling and result-processing logic in main() into a single helper function to avoid code duplication.

Consider extracting the “collect, print all errors, track first” pattern into one helper so you no longer have two almost‐identical loops in `main()`. For example:

```rust
/// Collects all results, prints each error, remembers the first and then returns it (if any).
fn report_results<T, F>(
    results: Vec<anyhow::Result<T>>,
    mut on_ok: F,
) -> anyhow::Result<()>
where
    F: FnMut(T),
{
    let mut first_err = None;
    for r in results {
        match r {
            Ok(v) => on_ok(v),
            Err(e) => {
                eprintln!("{e}");
                first_err.get_or_insert(e);
            }
        }
    }
    if let Some(e) = first_err {
        Err(e)
    } else {
        Ok(())
    }
}
```

Then in your `main()` you shrink both branches to

```rust
if cli.in_place {
    let results = cli.files
        .par_iter()
        .map(|p| handle_file(p, true, cli.opts).map(|_| ()))
        .collect();
    report_results(results, |_| ())?;
} else {
    let results = cli.files
        .par_iter()
        .map(|p| handle_file(p, false, cli.opts))
        .collect();
    report_results(results, |maybe_out| {
        if let Some(out) = maybe_out {
            println!("{out}");
        }
    })?;
}
```

This preserves printing all errors and returns the first, but collapses your two loops + `first_err` into one small helper.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment thread tests/parallel.rs
Comment thread tests/parallel.rs Outdated
Comment thread src/main.rs Outdated
@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Jul 21, 2025

@sourcery-ai resolve

@github-actions
Copy link
Copy Markdown

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Jul 22, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

♻️ Duplicate comments (4)
src/main.rs (2)

93-114: Perfect implementation of the suggested error handling pattern.

This function implements exactly what was recommended in the past review comment. The logic correctly collects all results, prints each error to stderr, remembers the first error, and returns it while allowing the closure to process successful values.


152-168: Excellent refactoring that eliminates code duplication.

The parallel processing logic now uses the centralised report_results helper, maintaining sequential output order while properly collecting and reporting all errors. The separation between in-place and output modes is clean and correct.

tests/parallel.rs (2)

11-16: Good implementation of the suggested empty file list test.

This test correctly addresses the past review comment by verifying that the CLI handles empty input gracefully, reading from stdin and producing appropriate output.


49-76: Good error handling test that addresses past review feedback.

The test correctly verifies that missing file errors include the filename in stderr, as suggested in past review comments. However, use the run_cli_with_args helper for consistency.

Apply this diff:

-    let output = Command::cargo_bin("mdtablefix")
-        .expect("failed to create command")
-        .arg(&good)
-        .arg(&missing)
-        .output()
-        .expect("failed to run command");
+    let good_str = good.to_str().unwrap();
+    let missing_str = missing.to_str().unwrap();
+    let output = run_cli_with_args(&[good_str, missing_str]);
📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 93cc220 and d2aea25.

📒 Files selected for processing (4)
  • docs/parallel-processing-roadmap.md (1 hunks)
  • src/main.rs (3 hunks)
  • tests/common/mod.rs (2 hunks)
  • tests/parallel.rs (1 hunks)
📓 Path-based instructions (2)
**/*.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • docs/parallel-processing-roadmap.md
**/*.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • tests/common/mod.rs
  • src/main.rs
  • tests/parallel.rs
🧬 Code Graph Analysis (1)
tests/parallel.rs (2)
tests/common/mod.rs (2)
  • run_cli_with_args (108-114)
  • broken_table (97-102)
src/table.rs (1)
  • reflow_table (165-184)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • docs/parallel-processing-roadmap.md
**/*.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • tests/common/mod.rs
  • src/main.rs
  • tests/parallel.rs
🧬 Code Graph Analysis (1)
tests/parallel.rs (2)
tests/common/mod.rs (2)
  • run_cli_with_args (108-114)
  • broken_table (97-102)
src/table.rs (1)
  • reflow_table (165-184)
🔇 Additional comments (6)
src/main.rs (2)

14-14: LGTM! Import addition supports improved error context.

The anyhow::Context import is correctly placed and necessary for the enhanced error reporting in handle_file.


79-80: Excellent error context enhancement.

The contextual error messages clearly identify which file operation failed and include the file path, making debugging much easier for users.

Also applies to: 85-86

tests/common/mod.rs (2)

4-4: LGTM! Import supports the new CLI testing utility.

The assert_cmd::Command import is correctly placed and necessary for the run_cli_with_args function.


104-114: Well-implemented CLI testing utility.

The function correctly uses Command::cargo_bin to test the binary, includes proper error handling with descriptive messages, and follows the coding guidelines for expect() usage and lint expectations.

tests/parallel.rs (1)

1-10: Well-structured test module with proper documentation.

The module documentation clearly explains its purpose, and the imports are appropriately organised for the test functionality.

docs/parallel-processing-roadmap.md (1)

18-18: Accurate documentation update reflecting completed work.

Correctly marks the parallel test extension as completed, aligning with the comprehensive tests added in tests/parallel.rs.

Comment thread tests/parallel.rs
Comment thread tests/parallel.rs
@leynos leynos merged commit 37ea876 into main Jul 23, 2025
2 checks passed
@leynos leynos deleted the codex/extend-tests-for-parallel-execution branch July 23, 2025 18:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant