Skip to content

Commit

Permalink
Remove reference to --no-db in command-line help
Browse files Browse the repository at this point in the history
  • Loading branch information
plumdog committed Feb 23, 2016
1 parent 4c0c366 commit 1c1a84f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pytest_django/plugin.py
Expand Up @@ -39,8 +39,7 @@ def pytest_addoption(parser):
group._addoption('--reuse-db',
action='store_true', dest='reuse_db', default=False,
help='Re-use the testing database if it already exists, '
'and do not remove it when the test finishes. This '
'option will be ignored when --no-db is given.')
'and do not remove it when the test finishes.')
group._addoption('--create-db',
action='store_true', dest='create_db', default=False,
help='Re-create the database, even if it exists. This '
Expand Down

0 comments on commit 1c1a84f

Please sign in to comment.