From 93d61c695eacbbb948ca441209c0516dd5265f2e Mon Sep 17 00:00:00 2001 From: Mo Sohani Date: Wed, 26 Jun 2024 11:11:26 -0400 Subject: [PATCH] applied changes requested --- README.md | 2 +- django508/tests/settings.py | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index a322e11..24fc124 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ In local development, the package has a parallel django508 application that can To list the available commands, run ```task help```. A django server can be started using ```task up``` command. ### Running pytest -Pytest test files can be ran using: ```task pytest```. If you need to add pytest command line option, you may do so using ```PYTEST_ARGS``` variable. E.g: ```task pytest PYTEST_ARGS="./tests/test_models.py -s -vv"``` +Pytest test files can be ran using: ```task test```. If you need to add pytest command line option, you may do so using ```PYTEST_ARGS``` variable. E.g: ```task test PYTEST_ARGS="./tests/test_models.py -s -vv"``` ## License Released under [MIT License](LICENSE.txt). diff --git a/django508/tests/settings.py b/django508/tests/settings.py index c67b3d5..482ad8a 100644 --- a/django508/tests/settings.py +++ b/django508/tests/settings.py @@ -73,14 +73,6 @@ "ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:", }, - # 'mysql': { - # 'ENGINE': 'django.db.backends.mysql', - # 'NAME': 'admin_interface', - # 'USER': 'mysql', - # 'PASSWORD': 'mysql', - # 'HOST': '', - # 'PORT': '', - # }, } DATABASES = {