Skip to content

Commit de7fc4b

Browse files
committed
Fix CI aura session run command
1 parent 7f5f350 commit de7fc4b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/ci/run_targeting_aura_sessions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def main() -> None:
2727
aura_api.check_running(instance_id)
2828
logging.info("Database %s up and running", instance_id)
2929

30-
uri = (create_result["connection_url"],)
31-
username = (create_result["username"],)
32-
password = (create_result["password"],)
30+
uri = create_result["connection_url"]
31+
username = create_result["username"]
32+
password = create_result["password"]
3333

3434
cmd = f"AURA_DB_ADDRESS={uri} AURA_DB_USER={username} AURA_DB_PW={password} tox -e jupyter-notebook-session-ci"
3535

File renamed without changes.

0 commit comments

Comments
 (0)