mega commit

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-08-20 20:47:17 +02:00
parent 4860179a1c
commit a578dd26a0
13 changed files with 608 additions and 305 deletions

View File

@@ -1,15 +1,16 @@
from libs.run_tests import run_tests
from libs.run_tests import run_tests
from suite_settings.models import models
from suite_settings.seeds import seeds
from suite_settings.tests import tests
from suite_settings.seeds import seeds
from suite_settings.tests import tests
def main():
results = run_tests(
run_tests(
models=models,
seeds=seeds,
tests=tests,
base_url="http://bolt.hs-mittweida.de:11434"
base_url="http://bolt.hs-mittweida.de:11434",
)
if __name__ == "__main__":