Skip to content

Commit 5e25e56

Browse files
authored
Merge branch 'dev' into snapshot-exit-code
2 parents 41550cc + dd6c4bf commit 5e25e56

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
coverage report
195195
coverage xml
196196
197-
- uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5
197+
- uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5
198198
with:
199199
files: coverage.xml
200200
env:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- Include the centralized nf-core configs also in offline mode, if a local copy is available. ([#3491](https://github.com/nf-core/tools/pull/3491))
1515
- downgrade nf-schema to fix CI tests ([#3544](https://github.com/nf-core/tools/pull/3544))
1616
- Make jobs automatically resubmit for exit code 175 ([#3564](https://github.com/nf-core/tools/pull/3564))
17+
- bump nf-schema back to 2.3.0 ([#3577](https://github.com/nf-core/tools/pull/3577))
1718

1819
### Linting
1920

@@ -64,7 +65,7 @@
6465
- Changing retrieval of file extension from EDAM ([#3512](https://github.com/nf-core/tools/pull/3512))
6566
- Refactor adding EDAM ontologies and allowing detect more patterns (e.g., versions.yml) ([#3519](https://github.com/nf-core/tools/pull/3519))
6667
- Add offline configs test action ([#3524](https://github.com/nf-core/tools/pull/3524))
67-
- Adds `test-datasets` subcommand for listing/searching files in the nf-core/test-datasets repo from the cli ([#3487](https://github.com/nf-core/tools/issues/3487), [#3548](https://github.com/nf-core/tools/pull/3548))
68+
- Adds `test-datasets` subcommand for listing/searching files in the nf-core/test-datasets repo from the cli ([#3487](https://github.com/nf-core/tools/issues/3487), [#3548](https://github.com/nf-core/tools/pull/3548), [#3566](https://github.com/nf-core/tools/pull/3566), [#3567](https://github.com/nf-core/tools/pull/3567))
6869
- Update pre-commit hook astral-sh/ruff-pre-commit to v0.11.2 ([#3521](https://github.com/nf-core/tools/pull/3521))
6970
- Fix indentation in included_configs API docs ([#3523](https://github.com/nf-core/tools/pull/3523))
7071
- chore(deps): update python:3.12-slim docker digest to a866731 ([#3527](https://github.com/nf-core/tools/pull/3527))
@@ -78,6 +79,8 @@
7879
- chore(deps): update python:3.12-slim docker digest to bae1a06 ([#3558](https://github.com/nf-core/tools/pull/3558))
7980
- Update CI to test template pipelines with nf-test ([#3559](https://github.com/nf-core/tools/pull/3559))
8081
- chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.11.9 ([#3563](https://github.com/nf-core/tools/pull/3563))
82+
- chore(deps): update python:3.12-slim docker digest to 31a416d ([#3568](https://github.com/nf-core/tools/pull/3568))
83+
- chore(deps): update codecov/codecov-action digest to 18283e0 ([#3575](https://github.com/nf-core/tools/pull/3575))
8184

8285
## [v3.2.1 - Pewter Pangolin Patch](https://github.com/nf-core/tools/releases/tag/3.2.1) - [2025-04-29]
8386

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-slim@sha256:bae1a061b657f403aaacb1069a7f67d91f7ef5725ab17ca36abc5f1b2797ff92
1+
FROM python:3.12-slim@sha256:31a416db24bd8ade7dac5fd5999ba6c234d7fa79d4add8781e95f41b187f4c9a
22
33
description="Docker image containing requirements for nf-core/tools"
44

nf_core/pipeline-template/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ manifest {
306306
{% if nf_schema -%}
307307
// Nextflow plugins
308308
plugins {
309-
id 'nf-schema@2.2.0' // Validation of pipeline parameters and creation of an input channel from a sample sheet
309+
id 'nf-schema@2.3.0' // Validation of pipeline parameters and creation of an input channel from a sample sheet
310310
}
311311

312312
validation {

nf_core/test_datasets/list.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ def list_datasets(
7373
else:
7474
table = rich.table.Table()
7575
if generate_nf_path:
76-
table.add_column("Nextflow Import")
76+
table.add_column("Nextflow Import", overflow="fold")
7777
elif generate_dl_url:
78-
table.add_column("Download URL")
78+
table.add_column("Download URL", overflow="fold")
7979
else:
80-
table.add_column("File")
80+
table.add_column("File", overflow="fold")
8181

8282
for el in out:
8383
table.add_row(el)

nf_core/test_datasets/search.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ def search_datasets(
6767
stdout.print(create_download_url(branch, selection))
6868
else:
6969
table = rich.table.Table(show_header=False)
70+
table.add_column("")
71+
table.add_column("", overflow="fold")
7072
table.add_row("File Name:", selection)
7173
table.add_row("Nextflow Import:", create_pretty_nf_path(selection, branch == MODULES_BRANCH_NAME))
7274
table.add_row("Download Link:", create_download_url(branch, selection))

0 commit comments

Comments
 (0)