prod-wag-backend-automate-s.../ApiServices/app.py

10 lines
375 B
Python

from Controllers.Postgres.config import postgres_configs
from Controllers.Mongo.config import mongo_configs
from Controllers.Postgres.implementations import generate_table_in_postgres, run_all_tests
if __name__ == "__main__":
print(f"Hello from the Test Service {mongo_configs.url}")
print(f"Hello from the Test Service {postgres_configs.url}")
run_all_tests()