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.
2 parents c6d54a0 + b10cea9 commit 7c59dbfCopy full SHA for 7c59dbf
tests/integration_test_10_clients.py
@@ -12,6 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+import os
16
import time
17
import urllib.parse
18
import uuid
@@ -63,7 +64,7 @@
63
64
}
65
TEST_PAT_1 = "00000000-0000-4000-a000-000000000000"
66
TEST_PAT_2 = "00000000-0000-3000-abcd-000000000001"
-TEST_PAT_ANON = "00112233-4455-6677-c899-aabbccddeeff"
67
+TEST_PAT_ANON = os.getenv("ANONYMOUS_PAT", "00112233-4455-6677-c899-aabbccddeeff")
68
INVALID_PAT = "0123"
69
AUTH_HEADERS_VALID_1 = {"PRIVATE-TOKEN": TEST_PAT_1}
70
AUTH_HEADERS_VALID_2 = {"PRIVATE-TOKEN": TEST_PAT_2}
0 commit comments