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()