Skip to content

Commit

Permalink
Add 2 force builds in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
marxin committed Jun 21, 2021
1 parent d86e1c7 commit fae4f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_build_manpage.py
Expand Up @@ -33,7 +33,7 @@ def test_all(app, status, warning):
@pytest.mark.sphinx('man', testroot='basic',
confoverrides={'man_make_section_directory': True})
def test_man_make_section_directory(app, status, warning):
app.build()
app.build(True)
assert (app.outdir / 'man1' / 'python.1').exists()


Expand Down
2 changes: 1 addition & 1 deletion tests/test_build_texinfo.py
Expand Up @@ -68,7 +68,7 @@ def test_texinfo(app, status, warning):

@pytest.mark.sphinx('texinfo', testroot='markup-rubric')
def test_texinfo_rubric(app, status, warning):
app.build()
app.build(True)

output = (app.outdir / 'python.texi').read_text()
assert '@heading This is a rubric' in output
Expand Down

0 comments on commit fae4f9d

Please sign in to comment.