Fixed upload_secrets_test
Some checks failed
checks-impure / test (pull_request) Failing after 12s
checks / test (pull_request) Failing after 1m22s

This commit is contained in:
Luis Hebendanz 2023-10-03 15:10:22 +02:00
parent be9d3d43bf
commit 7dde66c0df

View File

@ -56,7 +56,7 @@ def run_upload_secrets(
) -> None:
env = os.environ.copy()
env["CLAN_DIR"] = str(clan_dir)
env["PYTHONPATH"] = str(module_root().parent) # TODO do this in the clanCore module
env["PYTHONPATH"] = ":".join(sys.path) # TODO do this in the clanCore module
print(f"uploading secrets... {flake_attr}")
with TemporaryDirectory() as tempdir_:
tempdir = Path(tempdir_)