Skip to content

Commit 586aeeb

Browse files
authored
Merge pull request #4547 from plotly/skip-version-test
skip version test
2 parents 246b520 + cf0c61f commit 586aeeb

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

Diff for: packages/python/plotly/plotly/tests/test_core/test_offline/test_offline.py

-13
Original file line numberDiff line numberDiff line change
@@ -314,19 +314,6 @@ def get_html():
314314

315315
self.assertIn('"bogus": 42', html)
316316

317-
@pytest.mark.nodev
318-
def test_plotlyjs_version(self):
319-
path = os.path.join(
320-
packages_root, "javascript", "jupyterlab-plotly", "package.json"
321-
)
322-
with open(path, "rt") as f:
323-
package_json = json.load(f)
324-
expected_version = package_json["dependencies"]["plotly.js"]
325-
if expected_version[0] == "^":
326-
expected_version = expected_version[1:]
327-
328-
self.assertEqual(expected_version, plotly.offline.get_plotlyjs_version())
329-
330317
def test_include_mathjax_false_html(self):
331318
html = self._read_html(
332319
plotly.offline.plot(

0 commit comments

Comments
 (0)