We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2212d4 commit f454967Copy full SHA for f454967
.github/workflows/integration-gateway.yml
@@ -80,6 +80,8 @@ jobs:
80
run: |
81
pushd $GATEWAY_CHECKOUT_DIR
82
export GATEWAY_HOST=$(make gateway-host -s)
83
+ make generate-token
84
+ export GATEWAY_AUTH_KEY=$(make get-token)
85
popd
86
poetry run pytest tests/integrations/gateway -n $(nproc --all)
87
env:
tests/constants.py
@@ -10,6 +10,7 @@
10
COLD_START_TIMEOUT = 20
11
12
GATEWAY_HOST = os.getenv("GATEWAY_HOST")
13
+GATEWAY_AUTH_KEY = os.getenv("GATEWAY_AUTH_KEY")
14
GATEWAY_S3_REGION = os.getenv("S3_REGION", str(DEFAULT_REGION))
15
GATEWAY_S3_BUCKET_ENDPOINT = os.getenv(
16
"S3_ENDPOINT", f"https://s3.{DEFAULT_REGION}.scw.cloud"
0 commit comments