We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16c639c commit feb8655Copy full SHA for feb8655
1 file changed
tests/test_project.py
@@ -120,12 +120,8 @@ def test_manifest_simple_build(tmp_path: Path) -> None:
120
project.get_target("web").build()
121
assert (prj_path / "output" / "web" / "index.html").exists()
122
project.get_target("rs").build()
123
- assert (
124
- prj_path / "output" / "rs" / "index.html"
125
- ).exists()
126
127
- prj_path / "output" / "rs" / "runestone-manifest.xml"
128
+ assert (prj_path / "output" / "rs" / "index.html").exists()
+ assert (prj_path / "output" / "rs" / "runestone-manifest.xml").exists()
129
if HAS_XELATEX:
130
project.get_target("print").build()
131
assert (prj_path / "output" / "print" / "main.pdf").exists()
0 commit comments