File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
24
24
remote files.
25
25
- {pull}` 573 ` removes the ` pytask_execute_create_scheduler ` hook.
26
26
27
+ ## 0.4.6 - 2024-03-13
28
+
29
+ - {pull}` 576 ` fixes accidentally collecting ` pytask.MarkGenerator ` when using
30
+ ` from pytask import mark ` .
31
+
27
32
## 0.4.5 - 2024-01-09
28
33
29
34
- {pull}` 515 ` enables tests with graphviz in CI. Thanks to {user}` NickCrews ` .
Original file line number Diff line number Diff line change @@ -539,6 +539,7 @@ def __getattr__(self, name):
539
539
540
540
result = runner .invoke (cli , [tmp_path .as_posix ()])
541
541
assert result .exit_code == ExitCode .OK
542
+ assert "attr_that_definitely_does_not_exist" not in result .output
542
543
543
544
544
545
@pytest .mark .end_to_end ()
You can’t perform that action at this time.
0 commit comments