updated postgres and mongo updated

This commit is contained in:
2025-04-20 14:21:13 +03:00
parent 71822681f2
commit cc19cb7e6d
85 changed files with 6090 additions and 1986 deletions

13
run_mongo_tests.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Set MongoDB environment variables
export MONGO_ENGINE=mongodb
export MONGO_DB=admin
export MONGO_HOST=10.10.2.13
export MONGO_PORT=27017
export MONGO_USER=admin
export MONGO_AUTH_DB=admin
export MONGO_PASSWORD=password
# Run the tests
python -c "from Controllers.Mongo.implementations import run_all_tests; run_all_tests()"