##// END OF EJS Templates
Backport PR #4868: Static path fixes...
MinRK -
Show More
@@ -48,6 +48,9 b' def test_image_filename_defaults():'
48 48 nt.assert_raises(ValueError, display.Image)
49 49 nt.assert_raises(ValueError, display.Image, data='this is not an image', format='badformat', embed=True)
50 50 from IPython.html import DEFAULT_STATIC_FILES_PATH
51 # check boths paths to allow packages to test at build and install time
52 imgfile = os.path.join(tpath, 'html/static/base/images/ipynblogo.png')
53 if not os.path.exists(imgfile):
51 54 imgfile = os.path.join(DEFAULT_STATIC_FILES_PATH, 'base/images/ipynblogo.png')
52 55 img = display.Image(filename=imgfile)
53 56 nt.assert_equal('png', img.format)
@@ -88,8 +88,9 b' class CSSHTMLHeaderTransformer(Transformer):'
88 88 header = []
89 89
90 90 #Construct path to IPy CSS
91 sheet_filename = os.path.join(path.get_ipython_package_dir(),
92 'html', 'static', 'style', 'style.min.css')
91 from IPython.html import DEFAULT_STATIC_FILES_PATH
92 sheet_filename = os.path.join(DEFAULT_STATIC_FILES_PATH,
93 'style', 'style.min.css')
93 94
94 95 #Load style CSS file.
95 96 with io.open(sheet_filename, encoding='utf-8') as file:
General Comments 0
You need to be logged in to leave comments. Login now