summaryrefslogtreecommitdiff
path: root/tests/test_ext_githubpages.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-06-30 15:11:47 +0900
committerGitHub <noreply@github.com>2019-06-30 15:11:47 +0900
commit852c061cc64e2876ec206e5a7a116a40caf3fac6 (patch)
tree050326214dc6d7cd92b9a63f3952e70c418af8e2 /tests/test_ext_githubpages.py
parentc18dcf08f924c033b763c7bb41d90c30d466adb7 (diff)
parent8017b6ec2c6123c9286f72d0e58fc6ac913c8dd8 (diff)
downloadsphinx-git-852c061cc64e2876ec206e5a7a116a40caf3fac6.tar.gz
Merge pull request #6539 from tk0miya/fix_flake8_violations
Fix flake8 violations
Diffstat (limited to 'tests/test_ext_githubpages.py')
-rw-r--r--tests/test_ext_githubpages.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_ext_githubpages.py b/tests/test_ext_githubpages.py
index 450a25498..132d95e03 100644
--- a/tests/test_ext_githubpages.py
+++ b/tests/test_ext_githubpages.py
@@ -18,14 +18,16 @@ def test_githubpages(app, status, warning):
assert not (app.outdir / 'CNAME').exists()
-@pytest.mark.sphinx('html', testroot='ext-githubpages', confoverrides={'html_baseurl': 'https://sphinx-doc.github.io'})
+@pytest.mark.sphinx('html', testroot='ext-githubpages',
+ confoverrides={'html_baseurl': 'https://sphinx-doc.github.io'})
def test_no_cname_for_github_io_domain(app, status, warning):
app.builder.build_all()
assert (app.outdir / '.nojekyll').exists()
assert not (app.outdir / 'CNAME').exists()
-@pytest.mark.sphinx('html', testroot='ext-githubpages', confoverrides={'html_baseurl': 'https://sphinx-doc.org'})
+@pytest.mark.sphinx('html', testroot='ext-githubpages',
+ confoverrides={'html_baseurl': 'https://sphinx-doc.org'})
def test_cname_for_custom_domain(app, status, warning):
app.builder.build_all()
assert (app.outdir / '.nojekyll').exists()