-
Notifications
You must be signed in to change notification settings - Fork 348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to use one database when xdist plugin is used #336
base: main
Are you sure you want to change the base?
Conversation
def is_xdist_one_db_enabled(config): | ||
from django.conf import settings | ||
is_sqlite = (settings.DATABASES['default']['ENGINE'] == 'django.db.backends.sqlite3') | ||
# can't use one sqlite3 db for distributed test run because of lock |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should raise a config error probably?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not really familiar with error handling in pytest, could you give some example or exception class name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ValueError
might be appropriate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@blueyed done
|
||
one_db = config.getvalue('xdist_one_db') | ||
if one_db and is_sqlite: | ||
raise ValueError("xdist-one-db option can not be used together with sqlite3 backend") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might only be true for the :mem:
sqlite db, no?
group._addoption('--xdist-one-db', | ||
dest='xdist_one_db', default=False, action='store_true', | ||
help="Use only one database with xdist plugin. " | ||
"Doesn't work with sqlite3 backend due to db lock") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, this implies it is true for sqlite in general - but should have a dot at the end.
Got stuck again unfortunately. |
this got stuck for some reason: #98