Skip to content

Commit 7f7656c

Browse files
committed
Update instance on all tests
1 parent 3f29516 commit 7f7656c

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

tests/basic/02_arguments_and_results.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
serverless = ServerlessClient(
1515
token=os.environ.get("GATEWAY_TOKEN", "awesome_token"),
1616
host=os.environ.get("GATEWAY_HOST", "http://localhost:8000"),
17+
instance=os.environ.get("GATEWAY_INSTANCE", "an_awesome_crn"),
1718
)
1819
print(serverless)
1920

tests/basic/03_dependencies.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
serverless = ServerlessClient(
1616
token=os.environ.get("GATEWAY_TOKEN", "awesome_token"),
1717
host=os.environ.get("GATEWAY_HOST", "http://localhost:8000"),
18+
instance=os.environ.get("GATEWAY_INSTANCE", "an_awesome_crn"),
1819
)
1920
print(serverless)
2021

tests/basic/04_distributed_workloads.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
serverless = ServerlessClient(
77
token=os.environ.get("GATEWAY_TOKEN", "awesome_token"),
88
host=os.environ.get("GATEWAY_HOST", "http://localhost:8000"),
9+
instance=os.environ.get("GATEWAY_INSTANCE", "an_awesome_crn"),
910
)
1011
print(serverless)
1112

tests/basic/05_retrieving_past_results.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
serverless = ServerlessClient(
77
token=os.environ.get("GATEWAY_TOKEN", "awesome_token"),
88
host=os.environ.get("GATEWAY_HOST", "http://localhost:8000"),
9+
instance=os.environ.get("GATEWAY_INSTANCE", "an_awesome_crn"),
910
)
1011
print(serverless)
1112

tests/basic/06_function.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
serverless = ServerlessClient(
55
token=os.environ.get("GATEWAY_TOKEN", "awesome_token"),
66
host=os.environ.get("GATEWAY_HOST", "http://localhost:8000"),
7+
instance=os.environ.get("GATEWAY_INSTANCE", "an_awesome_crn"),
78
)
89

910
help = """

0 commit comments

Comments
 (0)