restructuring

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-08-14 21:02:12 +02:00
parent 15973d723f
commit 298d8c83ef
5 changed files with 205 additions and 75 deletions

16
test_suite.py Normal file
View File

@@ -0,0 +1,16 @@
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
def main():
results = run_tests(
models=models,
seeds=seeds,
tests=tests,
base_url="http://bolt.hs-mittweida.de:11434"
)
if __name__ == "__main__":
main()