You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which is indeed strange version for a notebook version. On an older installation this was normal, e.g.: "notebookVersion": "[6, 0, 3]".
The relevant code is:
Read Page Config${script} = Get Element Attribute id:jupyter-config-data innerHTML
${config} = Evaluate __import__("json").loads("""${script}""")
Set Global Variable ${PAGE CONFIG}${config}
Set Global Variable ${LAB VERSION}${config["appVersion"]}
The text was updated successfully, but these errors were encountered:
krassowski
changed the title
All robot CI tests are failing, possibly due to a typo in notebook version specs
All robot CI tests are failing, possibly due to a string in notebook version specs
Dec 31, 2020
Yeah. Or make it an raw string:
${config} = Evaluate __import__("json").loads(r"""${script}""")
Also latest ipython and Jedi fight right now.
Jedi<0.18
Description
Observed on #433. All systems, all Python versions, all robot tests.
The 846 region is:
which is indeed strange version for a notebook version. On an older installation this was normal, e.g.:
"notebookVersion": "[6, 0, 3]"
.The relevant code is:
The text was updated successfully, but these errors were encountered: