Skip to content

Commit f4bc8fb

Browse files
committed
Update tests for the upcoming v0.5 release.
1 parent 4d2a2b9 commit f4bc8fb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/test_normal_execution_w_plugin.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ def test_execution_w_varying_dependencies_products(
2222
import pytask
2323
from pathlib import Path
2424
25-
@pytask.mark.depends_on({dependencies})
26-
@pytask.mark.produces({products})
27-
def task_dummy(depends_on, produces):
25+
def task_dummy(
26+
depends_on=[Path(p) for p in {dependencies}],
27+
produces=[Path(p) for p in {products}],
28+
):
2829
if isinstance(produces, dict):
2930
produces = produces.values()
3031
elif isinstance(produces, Path):

0 commit comments

Comments
 (0)