diff --git a/selfdrive/test/openpilotci.py b/selfdrive/test/openpilotci.py index 517eeb4462..818a724ce4 100755 --- a/selfdrive/test/openpilotci.py +++ b/selfdrive/test/openpilotci.py @@ -15,10 +15,11 @@ 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(os.environ) print('CI', os.getenv('CI')) print('FILEREADER_CACHE', os.getenv('FILEREADER_CACHE')) print('AZURE_TOKEN_IN_ENV', "AZURE_TOKEN" in os.environ) - print('AZURE_TOKEN_TYPE', type(os.environ["AZURE_TOKEN"])) + # print('AZURE_TOKEN_TYPE', type(os.environ["AZURE_TOKEN"])) if "AZURE_TOKEN" in os.environ and type(os.environ["AZURE_TOKEN"]) == str: print('AZURE_TOKEN_LEN', len(os.environ["AZURE_TOKEN"])) diff --git a/selfdrive/test/process_replay/update_refs.py b/selfdrive/test/process_replay/update_refs.py index 975d4c9cb0..4ad6ab9a66 100755 --- a/selfdrive/test/process_replay/update_refs.py +++ b/selfdrive/test/process_replay/update_refs.py @@ -11,6 +11,7 @@ from selfdrive.version import get_commit from tools.lib.logreader import LogReader if __name__ == "__main__": + print(os.environ) parser = argparse.ArgumentParser(description="Updates the reference logs for the current commit") parser.add_argument("--no-upload", action="store_true")