Skip to content

Commit 77251bb

Browse files
committed
Fix snakemake functional tests
1 parent cd8465f commit 77251bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/functional/simple_snakefile_test_cases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
- name: test-config-missing
44
command: snakemake -n -p -s SimpleSnakefile
55
exit_code: 1
6-
stderr:
6+
stdout: # Dry run output should be stdout. See https://github.com/snakemake/snakemake/issues/2757
77
contains:
88
- "You must set --config N_LINES_TO_READ=<a value>."
99
- name: test-config-wrong-type
1010
command: snakemake -n -p -s SimpleSnakefile --config N_LINES_TO_READ=one
1111
exit_code: 1
12-
stderr:
12+
stdout:
1313
contains:
1414
- "N_LINES_TO_READ must be an integer."
1515
- name: test-config-invalid-value
1616
command: snakemake -n -p -s SimpleSnakefile --config N_LINES_TO_READ=-1
1717
exit_code: 1
18-
stderr:
18+
stdout:
1919
contains:
2020
- "N_LINES_TO_READ must at least be 1."
2121
- name: test-snakemake-run

0 commit comments

Comments
 (0)