Skip to content

Commit

Permalink
Attempt to increase test coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Feb 8, 2024
1 parent d4b49aa commit e5e9e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ def test_run_with_operation_selection(self):
project.run(names=["op1", "non-existent-op"])
assert all(job.isfile("world.txt") for job in even_jobs)
assert not any(job.doc.get("test") for job in project)
project.run(names=["op[^4]", "non-existent-op"])
project.run(names=["op[^4]", "non-existent-op", "non-existent.*"])
assert all(job.isfile("world.txt") for job in even_jobs)
assert all(job.doc.get("test") for job in project)
assert all("dynamic" not in job.doc for job in project)
Expand Down

0 comments on commit e5e9e8b

Please sign in to comment.