Skip to content

Commit

Permalink
Fix snakemake functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rhpvorderman committed Mar 18, 2024
1 parent cd8465f commit 77251bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/simple_snakefile_test_cases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
- name: test-config-missing
command: snakemake -n -p -s SimpleSnakefile
exit_code: 1
stderr:
stdout: # Dry run output should be stdout. See https://github.com/snakemake/snakemake/issues/2757
contains:
- "You must set --config N_LINES_TO_READ=<a value>."
- name: test-config-wrong-type
command: snakemake -n -p -s SimpleSnakefile --config N_LINES_TO_READ=one
exit_code: 1
stderr:
stdout:
contains:
- "N_LINES_TO_READ must be an integer."
- name: test-config-invalid-value
command: snakemake -n -p -s SimpleSnakefile --config N_LINES_TO_READ=-1
exit_code: 1
stderr:
stdout:
contains:
- "N_LINES_TO_READ must at least be 1."
- name: test-snakemake-run
Expand Down

0 comments on commit 77251bb

Please sign in to comment.