Skip to content

Commit

Permalink
WIP: Add pastebin code again
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaretnikov committed Feb 17, 2024
1 parent c67d0c7 commit 5d243ac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/playwright/test_ux.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,12 @@ def _existing_environment_interactions(page, env_name, time_to_build_env=3*60*10
# change the description
page.get_by_placeholder("Enter here the description of your environment").fill("new description")
# change the vesion spec of an existing package

with open("./foo.html", "w", encoding='utf-8') as f:
f.write(page.content())
import os
os.system("pastebinit -i ./foo.html -b dpaste.com")

page.get_by_text("ipykernel", exact=False).get_by_test_id("ConstraintSelectTest").click()
page.get_by_role("option", name=">=").click()
# Note: purposefully not testing version constraint since there is inconsistent behavior here
Expand Down

0 comments on commit 5d243ac

Please sign in to comment.