From 804e77840d1bfd3dd198100f569c2fe60fa0fac3 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Wed, 4 May 2022 15:40:17 -0700 Subject: [PATCH] debug --- selfdrive/test/openpilotci.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/selfdrive/test/openpilotci.py b/selfdrive/test/openpilotci.py index 105f0b0911..e3bdd239c4 100755 --- a/selfdrive/test/openpilotci.py +++ b/selfdrive/test/openpilotci.py @@ -15,6 +15,10 @@ def get_url(route_name, segment_num, log_type="rlog"): def upload_file(path, name): from azure.storage.blob import BlockBlobService # pylint: disable=import-error + print('CI', os.getenv('CI')) + print('FILEREADER_CACHE', os.getenv('FILEREADER_CACHE')) + print('AZURE_TOKEN_IN_ENV', "AZURE_TOKEN" in os.environ) + sas_token = None if os.path.isfile(TOKEN_PATH): sas_token = open(TOKEN_PATH).read().strip()