Conversation
Agent-Logs-Url: https://github.com/sequana/trf/sessions/55f99df6-8b27-4e97-b85c-43654b0ade42 Co-authored-by: cokelaer <778821+cokelaer@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
cokelaer
April 3, 2026 22:38
View session
cokelaer
requested changes
Apr 4, 2026
Contributor
cokelaer
left a comment
There was a problem hiding this comment.
Sequana-wrappers missing from dependrncies. Poetry lock should be removed
Agent-Logs-Url: https://github.com/sequana/trf/sessions/0d5aeb2a-bfab-44ca-b34f-712ecf4de178 Co-authored-by: cokelaer <778821+cokelaer@users.noreply.github.com>
Contributor
Author
Done in 199b70e: added |
Copilot
AI
changed the title
fix: use bash to execute trf.sh in test_full
fix: use bash to execute trf.sh, add sequana-wrappers dependency, and remove poetry.lock
Apr 4, 2026
cokelaer
requested changes
Apr 4, 2026
Contributor
cokelaer
left a comment
There was a problem hiding this comment.
Apptainers are failing. Change sh call to bash
Agent-Logs-Url: https://github.com/sequana/trf/sessions/a052469f-6f6e-4c78-a3b9-8be90d91bf74 Co-authored-by: cokelaer <778821+cokelaer@users.noreply.github.com>
Contributor
Author
Fixed in d9b2393: changed |
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.
test_fullwas failing becausetrf.shis generated withset -o pipefail, a bash-specific option, but the test invoked it viash(dash on Ubuntu), which rejects that option and exits early — leavingsummary.htmlnever produced. The same issue affected the Apptainer CI workflow.Changes
test/test_main.py: replacesh trf.shwithbash trf.shto match the#!/bin/bashshebang and bash-specific options in the generated script..github/workflows/apptainer.yml: replacesh trf.shwithbash trf.shfor the same reason.pyproject.toml: addsequana-wrappersas a package dependency so it is installed alongside the pipeline.poetry.lock: removed — lock files for libraries/pipelines should not be tracked in version control.