Skip to content

Commit 4baae05

Browse files
loosen test for dev builds
1 parent 34b313f commit 4baae05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/python/plotly/plotly/tests/test_core/test_offline/test_offline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,8 @@ def test_plotlyjs_version(self):
322322
expected_version = package_json["dependencies"]["plotly.js"]
323323
if expected_version[0] == "^":
324324
expected_version = expected_version[1:]
325-
326-
self.assertEqual(expected_version, plotly.offline.get_plotlyjs_version())
325+
if "circle-artifacts.com" not in expected_version:
326+
self.assertEqual(expected_version, plotly.offline.get_plotlyjs_version())
327327

328328
def test_include_mathjax_false_html(self):
329329
html = self._read_html(

0 commit comments

Comments
 (0)