Skip to content

Commit 83f6048

Browse files
committed
test: should failed
1 parent 17f0d9b commit 83f6048

3 files changed

Lines changed: 20 additions & 0 deletions

File tree

tests/test_issue3495/Snakefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
rule one:
3+
output:
4+
"one.txt",
5+
shell:
6+
"echo {params} > {output[0]}"
7+
8+
9+
use rule one as two with:
10+
params:
11+
output="goor job",
12+
13+
14+
print(UseRuleWith.INHERIT)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c1

tests/tests.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2246,6 +2246,11 @@ def test_issue3338():
22462246
run(dpath("test_issue3338"), targets=["all"])
22472247

22482248

2249+
@skip_on_windows
2250+
def test_issue3495():
2251+
run(dpath("test_issue3495"))
2252+
2253+
22492254
def test_github_issue_3374():
22502255
run(dpath("test_github_issue3271"), check_results=False)
22512256
run(

0 commit comments

Comments
 (0)