Skip to content

Introducing regression tests#1345

Open
kholoimov wants to merge 2 commits into
ShipSoft:mainfrom
kholoimov:dev_vkholoim_ctest
Open

Introducing regression tests#1345
kholoimov wants to merge 2 commits into
ShipSoft:mainfrom
kholoimov:dev_vkholoim_ctest

Conversation

@kholoimov

@kholoimov kholoimov commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

This PR introduces a CTest-based regression testing framework for FairShip.

Main features:

  • Adds eight regression tests covering simulation, event generation, muon-background workflows, reconstruction, particle-gun output, and tracking performance.
  • Compares command output against committed reference files.
  • Filters known nondeterministic output using configurable skip patterns.
  • Supports dependencies and shared working directories between related tests.
  • Runs independent tests in parallel.
  • Adds commands to run the regression suite and regenerate reference outputs.
  • Expands testing documentation and clarifies existing C++/RNTuple test descriptions.

Run the tests with:

pixi run test-fairship

Regenerate references with:

pixi run regenerate-fairship-references

Summary by CodeRabbit

  • New Features
    • Added a Python-driven FairShip regression-testing workflow with dynamic CTest registration, reference-log validation, and reference regeneration.
    • Added new test tasks for running regression cases in parallel and regenerating FairShip reference outputs.
  • Documentation
    • Expanded testing docs (including harness workflow, dependency ordering, working directories, skip-patterns, and network-dependent regenerations).
  • Tests
    • Updated test setup to exclude regression by default; added FairShip regression scripts, harness, skip-pattern filtering, and new/updated reference logs.
  • Bug Fixes
    • Improved determinism by propagating a consistent random seed into EvtGen/Pythia decayer and generators.
  • Style
    • Standardized user-facing “RNTuple” wording in test output.

@kholoimov
kholoimov requested a review from olantwin as a code owner July 20, 2026 17:16
@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The PR adds a Python-driven FairShip regression framework integrated with CTest and Pixi, defines simulation and reconstruction cases with captured references, documents test workflows, adds deterministic generator seeding, and clarifies existing C++ test terminology.

Changes

FairShip regression testing

Layer / File(s) Summary
Harness validation and execution
tests/fairship_tests/harness.py, tests/fairship_tests/test_cases.yaml, tests/fairship_tests/skip_patterns.conf, tests/fairship_tests/regenerate_references.sh
Validates test definitions, resolves dependencies, runs scripts, filters output, compares or regenerates references, and emits CMake declarations.
CTest and Pixi wiring
tests/CMakeLists.txt, pixi.toml, README.md, tests/README.md, tests/fairship_tests/README.md, .pre-commit-config.yaml
Registers regression tests with CTest, adds Pixi tasks, documents workflows, and excludes generated references from pre-commit processing.
Simulation scripts and reference corpus
tests/fairship_tests/scripts/*, tests/fairship_tests/references/*
Adds fixed-configuration simulation, reconstruction, and tracking scripts with captured reference outputs.
Explicit simulation seeding
macro/run_simScript.py, gconfig/DecayConfigTEvtGen.C, shipgen/*, stubs/ROOT/__init__.pyi
Propagates selected seeds to Pythia, fixed-target, HNL, DP, and EvtGen random engines, with matching public setters and stubs.
C++ test terminology
tests/test_data_class_io.cxx, tests/test_rntuple_io.cxx
Updates comments and console messages to describe vector compatibility and consistently spell RNTuple.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant CTest
  participant harness.py
  participant FairShipScript
  participant ReferenceOutput
  CTest->>harness.py: run configured regression test
  harness.py->>FairShipScript: execute with FAIRSHIP_ROOT
  FairShipScript-->>harness.py: capture combined output
  harness.py->>ReferenceOutput: compare filtered output
  ReferenceOutput-->>CTest: report pass or failure
Loading

Possibly related PRs

Suggested reviewers: olantwin

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (2 warnings)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description covers the feature summary and usage, but it omits the repository's required checklist section. Add the checklist section from the template and mark Changelog, conventional-commit message, and CI status as applicable.
Docstring Coverage ⚠️ Warning Docstring coverage is 29.41% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: adding a regression testing framework.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 6

🧹 Nitpick comments (1)
tests/fairship_tests/harness.py (1)

35-112: 🚀 Performance & Scalability | 🔵 Trivial | ⚡ Quick win

Cache test_cases() to avoid repeated re-parsing.

test_cases() re-reads and fully re-validates (including cycle detection) test_cases.yaml on every call. It's invoked repeatedly across test_names(), _test_case(), _patterns_for(), dependency_groups(), and once per test inside regenerate_test()'s recursive loop. This is fine at 8 tests but scales poorly and does redundant work.

♻️ Suggested fix
+from functools import lru_cache
+
+@lru_cache(maxsize=1)
 def test_cases() -> list[TestCase]:
     """Return and validate the tests declared by the configuration file."""
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/fairship_tests/harness.py` around lines 35 - 112, Cache the validated
result of test_cases() so the YAML is parsed and dependency validation,
including validate_acyclic(), occur only once per process. Preserve the existing
returned list and all validation behavior, and ensure callers such as
test_names(), _test_case(), _patterns_for(), dependency_groups(), and
regenerate_test() reuse the cached result.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@tests/fairship_tests/harness.py`:
- Around line 180-196: Update the subprocess.run invocation in run to enforce a
finite timeout for configured test scripts, including muonback-io.sh and
muonback-summary.sh. Handle subprocess.TimeoutExpired by returning an
appropriate failing status and captured diagnostic output, while preserving
normal return-code and output normalization behavior for completed commands.
- Around line 81-91: Update test_cases() validation to require every declared
dependency to appear earlier in the cases list than its dependent. Track
previously seen test names while iterating and reject any dependency not yet
seen, while preserving the existing duplicate, unknown-dependency, and
self-dependency checks.

In `@tests/fairship_tests/references/pythia8-summary.txt`:
- Line 1: Update skip_patterns.conf to mask all environment-specific
absolute-path output, including the listed Media file used, ---User path,
G4ParticleHPInelasticData, NeutronHP, field-creation, and Target configuration
patterns. Then rerun regenerate_references.sh so
tests/fairship_tests/references/pythia8-summary.txt (1-1) and
tests/fairship_tests/references/tracking-benchmark.txt (1-1) no longer contain
unfiltered local paths.

In `@tests/fairship_tests/scripts/reconstruction.sh`:
- Around line 5-7: Set the QT_QPA_PLATFORM environment variable to offscreen in
reconstruction.sh before invoking ShipReco.py, matching the setup used by the
other FairShip test scripts and preserving the existing command flow.

In `@tests/fairship_tests/skip_patterns.conf`:
- Around line 32-51: Update tests/fairship_tests/skip_patterns.conf lines 32-51
by consolidating the muonback-io and reconstruction path filters into the global
test * block and adding filters for DecayConfig, EvtGen, and geometry-file
paths. Then run pixi run regenerate-fairship-references to refresh
tests/fairship_tests/references/ci-sim.txt lines 4-5, evtgen-summary.txt line 1,
muonback-io.txt line 180, muonback-summary.txt line 94, and particle-gun.txt
line 1 so leaked absolute local paths are removed.

In `@tests/README.md`:
- Around line 81-87: Correct both YAML examples in tests/README.md (lines 81-87)
and tests/fairship_tests/README.md (lines 24-30) by defining the dependency-free
simulation test as a mapping with a name field instead of a plain string; leave
harness.py unchanged.

---

Nitpick comments:
In `@tests/fairship_tests/harness.py`:
- Around line 35-112: Cache the validated result of test_cases() so the YAML is
parsed and dependency validation, including validate_acyclic(), occur only once
per process. Preserve the existing returned list and all validation behavior,
and ensure callers such as test_names(), _test_case(), _patterns_for(),
dependency_groups(), and regenerate_test() reuse the cached result.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 821676a9-a5e5-4962-a889-8d3206d19131

📥 Commits

Reviewing files that changed from the base of the PR and between 3fd2adf and 20923ca.

📒 Files selected for processing (28)
  • README.md
  • pixi.toml
  • tests/CMakeLists.txt
  • tests/README.md
  • tests/fairship_tests/README.md
  • tests/fairship_tests/__init__.py
  • tests/fairship_tests/harness.py
  • tests/fairship_tests/references/ci-sim.txt
  • tests/fairship_tests/references/evtgen-summary.txt
  • tests/fairship_tests/references/muonback-io.txt
  • tests/fairship_tests/references/muonback-summary.txt
  • tests/fairship_tests/references/particle-gun.txt
  • tests/fairship_tests/references/pythia8-summary.txt
  • tests/fairship_tests/references/reconstruction.txt
  • tests/fairship_tests/references/tracking-benchmark.txt
  • tests/fairship_tests/regenerate_references.sh
  • tests/fairship_tests/scripts/ci-sim.sh
  • tests/fairship_tests/scripts/evtgen-summary.sh
  • tests/fairship_tests/scripts/muonback-io.sh
  • tests/fairship_tests/scripts/muonback-summary.sh
  • tests/fairship_tests/scripts/particle-gun.sh
  • tests/fairship_tests/scripts/pythia8-summary.sh
  • tests/fairship_tests/scripts/reconstruction.sh
  • tests/fairship_tests/scripts/tracking-benchmark.sh
  • tests/fairship_tests/skip_patterns.conf
  • tests/fairship_tests/test_cases.yaml
  • tests/test_data_class_io.cxx
  • tests/test_rntuple_io.cxx

Comment thread tests/fairship_tests/harness.py
Comment thread tests/fairship_tests/harness.py Outdated
Comment thread tests/fairship_tests/references/pythia8-summary.txt Outdated
Comment thread tests/fairship_tests/scripts/reconstruction.sh
Comment thread tests/fairship_tests/skip_patterns.conf Outdated
Comment thread tests/README.md
@kholoimov

Copy link
Copy Markdown
Contributor Author

Going to apply coderabbit comments

@kholoimov

Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
✅ Action performed

Review finished.

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.

@olantwin

Copy link
Copy Markdown
Contributor

@kholoimov Could you please get the CI to pass? I think most jobs fail because the lockfile needs updating due to the added env.

@olantwin

Copy link
Copy Markdown
Contributor

No merge commit please.

@kholoimov

Copy link
Copy Markdown
Contributor Author

It's empty. Have no idea why github decided that I need to update my branch

@kholoimov
kholoimov force-pushed the dev_vkholoim_ctest branch from 16c0e3c to b7c258a Compare July 21, 2026 08:13
@kholoimov

Copy link
Copy Markdown
Contributor Author

@olantwin I believe now it's failing not because of my changes. I can fix it in the PR, but probably will be better to have it separately:


[vkholoim@hl01 FairShip]$ pixi install --locked
Error:   × failed to fetch geant4-vmc-6.8-hb0f4dca_6.conda
  ├─▶ failed to interact with the package cache layer.
  ╰─▶ HTTP status client error (404 Not Found) for url (https://prefix.dev/ship/linux-64/geant4-vmc-6.8-hb0f4dca_6.conda)

@olantwin

Copy link
Copy Markdown
Contributor

@olantwin I believe now it's failing not because of my changes. I can fix it in the PR, but probably will be better to have it separately:


[vkholoim@hl01 FairShip]$ pixi install --locked
Error:   × failed to fetch geant4-vmc-6.8-hb0f4dca_6.conda
  ├─▶ failed to interact with the package cache layer.
  ╰─▶ HTTP status client error (404 Not Found) for url (https://prefix.dev/ship/linux-64/geant4-vmc-6.8-hb0f4dca_6.conda)

This is indeed my fault due to geant4-vmc moving to conda-forge.

@olantwin

Copy link
Copy Markdown
Contributor

#1348 should fix the geant4-vmc issue.

@olantwin

Copy link
Copy Markdown
Contributor

Rebasing now should work.

@kholoimov
kholoimov force-pushed the dev_vkholoim_ctest branch from 97dc9ad to c9ca589 Compare July 21, 2026 09:29

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
tests/fairship_tests/harness.py (1)

108-110: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Use iterable unpacking for list concatenation.

You can use iterable unpacking instead of list concatenation for slightly better performance and more idiomatic Python, as recommended by static analysis tools (e.g., Ruff's RUF005).

♻️ Proposed refactor
         if name in visiting:
-            cycle = visiting[visiting.index(name) :] + [name]
+            cycle = [*visiting[visiting.index(name) :], name]
             raise RuntimeError(f"Dependency cycle in {TEST_CASES}: {' -> '.join(cycle)}")
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/fairship_tests/harness.py` around lines 108 - 110, Update the cycle
construction in the dependency traversal around the visiting list to use
iterable unpacking instead of list concatenation, while preserving the same
ordering and repeated cycle-name behavior in the RuntimeError raised by the
cycle detection logic.

Source: Linters/SAST tools

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@tests/fairship_tests/harness.py`:
- Around line 108-110: Update the cycle construction in the dependency traversal
around the visiting list to use iterable unpacking instead of list
concatenation, while preserving the same ordering and repeated cycle-name
behavior in the RuntimeError raised by the cycle detection logic.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 24e7c89f-7185-448f-941e-ca2f831917c5

📥 Commits

Reviewing files that changed from the base of the PR and between 16c0e3c and c9ca589.

⛔ Files ignored due to path filters (1)
  • pixi.lock is excluded by !**/*.lock
📒 Files selected for processing (28)
  • README.md
  • pixi.toml
  • tests/CMakeLists.txt
  • tests/README.md
  • tests/fairship_tests/README.md
  • tests/fairship_tests/__init__.py
  • tests/fairship_tests/harness.py
  • tests/fairship_tests/references/ci-sim.txt
  • tests/fairship_tests/references/evtgen-summary.txt
  • tests/fairship_tests/references/muonback-io.txt
  • tests/fairship_tests/references/muonback-summary.txt
  • tests/fairship_tests/references/particle-gun.txt
  • tests/fairship_tests/references/pythia8-summary.txt
  • tests/fairship_tests/references/reconstruction.txt
  • tests/fairship_tests/references/tracking-benchmark.txt
  • tests/fairship_tests/regenerate_references.sh
  • tests/fairship_tests/scripts/ci-sim.sh
  • tests/fairship_tests/scripts/evtgen-summary.sh
  • tests/fairship_tests/scripts/muonback-io.sh
  • tests/fairship_tests/scripts/muonback-summary.sh
  • tests/fairship_tests/scripts/particle-gun.sh
  • tests/fairship_tests/scripts/pythia8-summary.sh
  • tests/fairship_tests/scripts/reconstruction.sh
  • tests/fairship_tests/scripts/tracking-benchmark.sh
  • tests/fairship_tests/skip_patterns.conf
  • tests/fairship_tests/test_cases.yaml
  • tests/test_data_class_io.cxx
  • tests/test_rntuple_io.cxx
🚧 Files skipped from review as they are similar to previous changes (20)
  • tests/fairship_tests/regenerate_references.sh
  • tests/fairship_tests/skip_patterns.conf
  • tests/fairship_tests/test_cases.yaml
  • tests/fairship_tests/scripts/ci-sim.sh
  • tests/fairship_tests/scripts/evtgen-summary.sh
  • tests/fairship_tests/scripts/muonback-io.sh
  • tests/fairship_tests/init.py
  • tests/fairship_tests/scripts/muonback-summary.sh
  • tests/fairship_tests/scripts/reconstruction.sh
  • tests/test_rntuple_io.cxx
  • tests/fairship_tests/scripts/pythia8-summary.sh
  • tests/fairship_tests/references/reconstruction.txt
  • tests/fairship_tests/scripts/tracking-benchmark.sh
  • README.md
  • tests/fairship_tests/scripts/particle-gun.sh
  • tests/CMakeLists.txt
  • tests/test_data_class_io.cxx
  • tests/README.md
  • tests/fairship_tests/references/ci-sim.txt
  • tests/fairship_tests/references/evtgen-summary.txt

@kholoimov
kholoimov force-pushed the dev_vkholoim_ctest branch 3 times, most recently from cc607b2 to 836071a Compare July 21, 2026 11:31
Add reusable regression-test harnesses, reference outputs, CTest integration, and documentation. Isolate lint tooling and preserve generated reference files during formatting checks.
@kholoimov
kholoimov force-pushed the dev_vkholoim_ctest branch from 836071a to ac4afce Compare July 21, 2026 11:37
@kholoimov

Copy link
Copy Markdown
Contributor Author

I faced the problem that even with Seed propagation inside Pythia8 and EvtGen generators, I see different output on different machines, while the output on the same machine stays the same.

@kholoimov

Copy link
Copy Markdown
Contributor Author

I faced the problem that even with Seed propagation inside Pythia8 and EvtGen generators, I see different output on different machines, while the output on the same machine stays the same.

Looks like the issue is that my second machine utilises an AMD processor. Going to validate tests on lxplus, and if everything goes well, this is ready to be merged

@kholoimov

Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 21, 2026

Copy link
Copy Markdown
✅ Action performed

Review finished.

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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🧹 Nitpick comments (2)
tests/fairship_tests/harness.py (2)

59-61: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Clarify the validation error message.

The current validation logic strictly requires the test entry to be a dictionary (mapping), so a bare string "test name" will trigger this error. Updating the message to reflect that only a mapping is allowed will prevent configuration confusion.

♻️ Proposed refactor
         else:
             raise RuntimeError(
-                f"{location} must be a test name or a mapping containing 'name' and optional 'depends_on'"
+                f"{location} must be a mapping containing 'name' and optional 'depends_on'"
             )
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/fairship_tests/harness.py` around lines 59 - 61, Update the validation
error raised in the harness entry-validation logic to state that location must
be a mapping containing “name” and optional “depends_on”; remove the misleading
allowance for a bare test-name string. Preserve the existing validation behavior
and RuntimeError handling.

108-110: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Consider unpacking instead of list concatenation.

As indicated by static analysis, using list unpacking is slightly more idiomatic and performant for constructing the cycle path than list concatenation.

♻️ Proposed refactor
         if name in visiting:
-            cycle = visiting[visiting.index(name) :] + [name]
+            cycle = [*visiting[visiting.index(name) :], name]
             raise RuntimeError(f"Dependency cycle in {TEST_CASES}: {' -> '.join(cycle)}")
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/fairship_tests/harness.py` around lines 108 - 110, Update the cycle
construction in the dependency traversal around the visiting list to use list
unpacking when appending name, while preserving the existing cycle path and
RuntimeError message behavior.

Source: Linters/SAST tools

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@tests/fairship_tests/harness.py`:
- Around line 59-61: Update the validation error raised in the harness
entry-validation logic to state that location must be a mapping containing
“name” and optional “depends_on”; remove the misleading allowance for a bare
test-name string. Preserve the existing validation behavior and RuntimeError
handling.
- Around line 108-110: Update the cycle construction in the dependency traversal
around the visiting list to use list unpacking when appending name, while
preserving the existing cycle path and RuntimeError message behavior.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: ccdef4f1-86db-4c6e-a7e0-8016a306d292

📥 Commits

Reviewing files that changed from the base of the PR and between 16c0e3c and ac4afce.

⛔ Files ignored due to path filters (1)
  • pixi.lock is excluded by !**/*.lock
📒 Files selected for processing (41)
  • .pre-commit-config.yaml
  • README.md
  • gconfig/DecayConfigTEvtGen.C
  • macro/run_simScript.py
  • pixi.toml
  • shipgen/DPPythia8Generator.cxx
  • shipgen/DPPythia8Generator.h
  • shipgen/FixedTargetGenerator.cxx
  • shipgen/HNLPythia8Generator.cxx
  • shipgen/HNLPythia8Generator.h
  • shipgen/Pythia8Generator.cxx
  • shipgen/Pythia8Generator.h
  • shipgen/TEvtGenDecayer.cxx
  • shipgen/TEvtGenDecayer.h
  • stubs/ROOT/__init__.pyi
  • tests/CMakeLists.txt
  • tests/README.md
  • tests/fairship_tests/README.md
  • tests/fairship_tests/__init__.py
  • tests/fairship_tests/harness.py
  • tests/fairship_tests/references/ci-sim.txt
  • tests/fairship_tests/references/evtgen-summary.txt
  • tests/fairship_tests/references/muonback-io.txt
  • tests/fairship_tests/references/muonback-summary.txt
  • tests/fairship_tests/references/particle-gun.txt
  • tests/fairship_tests/references/pythia8-summary.txt
  • tests/fairship_tests/references/reconstruction.txt
  • tests/fairship_tests/references/tracking-benchmark.txt
  • tests/fairship_tests/regenerate_references.sh
  • tests/fairship_tests/scripts/ci-sim.sh
  • tests/fairship_tests/scripts/evtgen-summary.sh
  • tests/fairship_tests/scripts/muonback-io.sh
  • tests/fairship_tests/scripts/muonback-summary.sh
  • tests/fairship_tests/scripts/particle-gun.sh
  • tests/fairship_tests/scripts/pythia8-summary.sh
  • tests/fairship_tests/scripts/reconstruction.sh
  • tests/fairship_tests/scripts/tracking-benchmark.sh
  • tests/fairship_tests/skip_patterns.conf
  • tests/fairship_tests/test_cases.yaml
  • tests/test_data_class_io.cxx
  • tests/test_rntuple_io.cxx
🚧 Files skipped from review as they are similar to previous changes (20)
  • tests/fairship_tests/scripts/pythia8-summary.sh
  • tests/fairship_tests/scripts/reconstruction.sh
  • tests/fairship_tests/regenerate_references.sh
  • tests/fairship_tests/test_cases.yaml
  • tests/fairship_tests/scripts/muonback-summary.sh
  • tests/fairship_tests/scripts/muonback-io.sh
  • tests/fairship_tests/scripts/particle-gun.sh
  • README.md
  • tests/README.md
  • tests/fairship_tests/scripts/ci-sim.sh
  • tests/fairship_tests/init.py
  • tests/fairship_tests/scripts/evtgen-summary.sh
  • tests/fairship_tests/scripts/tracking-benchmark.sh
  • tests/fairship_tests/skip_patterns.conf
  • tests/fairship_tests/references/reconstruction.txt
  • tests/CMakeLists.txt
  • tests/test_rntuple_io.cxx
  • tests/test_data_class_io.cxx
  • pixi.toml
  • tests/fairship_tests/references/evtgen-summary.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants