Issues (17)

tests/test_sphinx_doc.py (2 issues)

1
from . import bake_cookie, subprocess_in_dir
0 ignored issues
show
Missing module docstring
Loading history...
2
3
4
def test_doc_tox_env(cookies):
0 ignored issues
show
Missing function or method docstring
Loading history...
5
    with bake_cookie(cookies) as result:
6
        assert result.project_path.is_dir()
7
        subprocess_in_dir(
8
            "tox -e docs --workdir .tox",
9
            str(result.project_path),
10
        )
11