pytest/pytestpavement/io/mongo.py
2022-09-27 08:18:52 +02:00

14 lines
418 B
Python

import mongoengine
def connect_mongo_db(username='admin',
password='admin',
host='localhost',
authentication_source='admin'):
mongoengine.connect('labtests',
username=username,
password=password,
host=host,
authentication_source=authentication_source)