summaryrefslogtreecommitdiff
path: root/tests/test_build_manpage.py
diff options
context:
space:
mode:
authorTakayuki SHIMIZUKAWA <shimizukawa@gmail.com>2017-01-07 00:48:27 +0900
committerGitHub <noreply@github.com>2017-01-07 00:48:27 +0900
commit620616cdbd92147f6ea7bbeb670dc3a0562235ff (patch)
treed9e459cc62d2c1fe783aa665ab56680eca112ab6 /tests/test_build_manpage.py
parent54c8c012228559c3bf30011977984a60a9299e9b (diff)
parent89e1df0bba58fc8d420fd9f293c4e325e06fc431 (diff)
downloadsphinx-git-620616cdbd92147f6ea7bbeb670dc3a0562235ff.tar.gz
Merge pull request #3302 from sphinx-doc/pytest-stable
pytest migration
Diffstat (limited to 'tests/test_build_manpage.py')
-rw-r--r--tests/test_build_manpage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_build_manpage.py b/tests/test_build_manpage.py
index 8da2eaadd..b91a4fd29 100644
--- a/tests/test_build_manpage.py
+++ b/tests/test_build_manpage.py
@@ -10,10 +10,10 @@
"""
from __future__ import print_function
-from util import with_app
+import pytest
-@with_app(buildername='man')
+@pytest.mark.sphinx('man')
def test_all(app, status, warning):
app.builder.build_all()
assert (app.outdir / 'SphinxTests.1').exists()