installable package #9

Merged
dan merged 31 commits from installable into dev 2023-12-07 11:32:03 +01:00
Showing only changes of commit 65d3753295 - Show all commits

21
main.py Normal file
View file

@ -0,0 +1,21 @@
import json
import os
import subprocess
from pathlib import Path
# --------------------- load credentials to env variables -------------------- #
cred_file = Path("credentials.json")
with open(cred_file, "r") as f:
CREDENTIALS = json.load(f)
for key, value in CREDENTIALS.items():
os.environ[key] = value
subprocess.run(
[
"pytest-abra",
# "--debug",
]
)