Fix in tests options

This commit is contained in:
absurdo 2023-12-27 15:12:10 +01:00
parent 76db9d7816
commit 1774789567

View file

@ -4,7 +4,7 @@ from paramecio2.libraries.db import corefields
def pytest_addoption(parser):
parser.addoption("--mysql_host", action="store", default="host", help="MySQL host: default localhost")
parser.addoption("--mysql_host", action="store", default="localhost", help="MySQL host: default localhost")
parser.addoption("--mysql_user", action="store", default="root", help="Mysql User for make the test: default root")
parser.addoption("--mysql_password", action="store", default="", help="Mysql password for make the test: default empty value")
parser.addoption("--mysql_db", action="store", default="test_paramecio_db", help="Mysql Database for execute the test: default test_paramecio_db")