10 lines
344 B
Python
10 lines
344 B
Python
from Controllers.Postgres.config import postgres_configs
|
|
from Controllers.Mongo.config import mongo_configs
|
|
from Controllers.Mongo.implementations import 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()
|