not getting anything?

pull/24414/head
Shane Smiskol 3 years ago
parent 97df122f23
commit 977ff67521
  1. 3
      selfdrive/test/openpilotci.py
  2. 1
      selfdrive/test/process_replay/update_refs.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"]))

@ -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")

Loading…
Cancel
Save