Skip to content

Commit f38e4e0

Browse files
committed
add progress bar when getting status of map
1 parent 7c9619c commit f38e4e0

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

tests/performance/locustfiles/functions/map_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# "matplotlib",
66
# "osparc>=0.8.3.post0.dev26",
77
# "tenacity",
8+
# "tqdm",
89
# ]
910
# ///
1011

tests/performance/locustfiles/functions/map_test_sleeper.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# "matplotlib",
66
# "osparc>=0.8.3.post0.dev26",
77
# "tenacity",
8+
# "tqdm",
89
# ]
910
# ///
1011

@@ -21,14 +22,6 @@
2122
from httpx import BasicAuth, Client, HTTPStatusError
2223
from tenacity import retry, retry_if_exception_type, stop_after_delay, wait_exponential
2324

24-
_SCRIPT_DIR = Path(__file__).parent
25-
_MAIN_FILE = _SCRIPT_DIR / "main.py"
26-
assert _MAIN_FILE.is_file(), f"Main file not found: {_MAIN_FILE}"
27-
_NERVE_MODEL_FILE = _SCRIPT_DIR / "Nerve_Model.sab"
28-
assert _NERVE_MODEL_FILE.is_file(), f"Nerve model file not found: {_NERVE_MODEL_FILE}"
29-
_VALUES_FILE = _SCRIPT_DIR / "values.json"
30-
assert _VALUES_FILE.is_file(), f"Values file not found: {_VALUES_FILE}"
31-
3225
_SOLVER_KEY = "simcore/services/comp/itis/sleeper"
3326
_SOLVER_VERSION = "2.2.1"
3427

0 commit comments

Comments
 (0)