Skip to content

Commit 44a537e

Browse files
authored
Make the test check for INVALID message (#13)
* Make the test check for INVALID message
1 parent c82f6d4 commit 44a537e

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

copier.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ _skip_if_exists:
2222
- results/**
2323
- tests/**
2424
- workflow/**
25-
- .gitignore
2625
- .readthedocs.yaml
2726
- AUTHORS
2827
- CITATION.cff

template/.github/workflows/check-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Check for changes in the upstream template. If changes are found, a comment is added to the PR.
1+
# Check for changes in the upstream template. If changes are found, an issue is created
22
name: Template check.
33
on:
44
schedule:

template/tests/clio_test.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_snakemake_all_failure(module_path):
4242
process = subprocess.run(
4343
"snakemake", shell=True, cwd=module_path, capture_output=True
4444
)
45-
assert "This workflow must be called as a snakemake module" in str(process.stderr)
45+
assert "INVALID (missing locally)" in str(process.stderr)
4646

4747

4848
def test_snakemake_integration_testing(module_path):

0 commit comments

Comments
 (0)