Skip to content

Commit

Permalink
Merge branch 'enh/search-users-as-i-type' of github.com:odeimaiz/ospa…
Browse files Browse the repository at this point in the history
…rc-simcore into enh/search-users-as-i-type
  • Loading branch information
odeimaiz committed Jan 14, 2025
2 parents 407d69c + 7c34c22 commit 4d03621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
4 changes: 2 additions & 2 deletions tests/e2e-playwright/tests/jupyterlabs/test_jupyterlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def test_jupyterlab(
logging.INFO,
f"Creating multiple files and 1 file of about {large_file_size.human_readable()}",
):
iframe.get_by_role("button", name="New Launcher").click()
iframe.get_by_role("button", name="New Launcher").nth(0).click()
with page.expect_websocket(_JLabWaitForTerminalWebSocket()) as ws_info:
iframe.get_by_label("Launcher").get_by_text("Terminal").click()

Expand Down Expand Up @@ -153,7 +153,7 @@ def test_jupyterlab(
return
# Wait until iframe is shown and create new notebook with print statement
with log_context(logging.INFO, "Running new notebook"):
iframe.get_by_role("button", name="New Launcher").click()
iframe.get_by_role("button", name="New Launcher").nth(0).click()
iframe.locator(".jp-LauncherCard-icon").first.click()
iframe.get_by_role("tab", name="Untitled.ipynb").click()
_jupyterlab_ui = iframe.get_by_label("Untitled.ipynb").get_by_role("textbox")
Expand Down
15 changes: 1 addition & 14 deletions tests/performance/locust_settings.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "faker",
# "locust",
# "locust-plugins",
# "parse",
# "pydantic",
# "pydantic-settings",
# "tenacity"
# ]
# ///
# pylint: disable=unused-argument
# pylint:disable=unused-argument
# pylint: disable=no-self-use
# pylint: disable=no-name-in-module

import importlib.util
import inspect
Expand Down

0 comments on commit 4d03621

Please sign in to comment.