mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
remove test that is not works correctly on travis.ci (+1 squashed commits)
This commit is contained in:
parent
6b7a2c8b6a
commit
e8e5bae15f
@ -11,15 +11,10 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import zipfile
|
import zipfile
|
||||||
import sys
|
|
||||||
import subprocess
|
|
||||||
import tempfile
|
|
||||||
from path import path
|
|
||||||
|
|
||||||
from sphinx.theming import Theme, ThemeError
|
from sphinx.theming import Theme, ThemeError
|
||||||
from sphinx.util.osutil import cd
|
|
||||||
|
|
||||||
from util import with_app, raises, TestApp, rootdir
|
from util import with_app, raises, TestApp
|
||||||
|
|
||||||
|
|
||||||
@with_app(confoverrides={'html_theme': 'ziptheme',
|
@with_app(confoverrides={'html_theme': 'ziptheme',
|
||||||
@ -84,38 +79,3 @@ def test_js_source(app, status, warning):
|
|||||||
assert 'Underscore.js {v}'.format(v=v) in underscore_min, msg
|
assert 'Underscore.js {v}'.format(v=v) in underscore_min, msg
|
||||||
underscore_src = (app.outdir / '_static' / 'underscore-{v}.js'.format(v=v)).text()
|
underscore_src = (app.outdir / '_static' / 'underscore-{v}.js'.format(v=v)).text()
|
||||||
assert 'Underscore.js {v}'.format(v=v) in underscore_src, msg
|
assert 'Underscore.js {v}'.format(v=v) in underscore_src, msg
|
||||||
|
|
||||||
|
|
||||||
def test_theme_plugin():
|
|
||||||
tempdir = path(tempfile.mkdtemp())
|
|
||||||
testrootdir = rootdir / 'roots' / ('test-theming')
|
|
||||||
pkgdir = tempdir / 'theming'
|
|
||||||
testrootdir.copytree(pkgdir)
|
|
||||||
with cd(pkgdir):
|
|
||||||
command = [sys.executable, 'setup.py', 'install']
|
|
||||||
try:
|
|
||||||
proc = subprocess.Popen(
|
|
||||||
command,
|
|
||||||
env=os.environ,
|
|
||||||
stdout=subprocess.PIPE,
|
|
||||||
stderr=subprocess.PIPE)
|
|
||||||
out, err = proc.communicate()
|
|
||||||
print(out)
|
|
||||||
print(err)
|
|
||||||
assert proc.returncode == 0, 'expect zero status for setup.py'
|
|
||||||
finally:
|
|
||||||
pass
|
|
||||||
|
|
||||||
command = ['sphinx-build', '.', '_build/html']
|
|
||||||
try:
|
|
||||||
proc = subprocess.Popen(
|
|
||||||
command,
|
|
||||||
env=os.environ,
|
|
||||||
stdout=subprocess.PIPE,
|
|
||||||
stderr=subprocess.PIPE)
|
|
||||||
out, err = proc.communicate()
|
|
||||||
print(out)
|
|
||||||
print(err)
|
|
||||||
assert proc.returncode == 0, 'expect zero status for setup.py'
|
|
||||||
finally:
|
|
||||||
tempdir.rmtree(ignore_errors=True)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user