Skip to content
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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

magicjohnson
Copy link

this got stuck for some reason: #98

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
Copy link
Contributor

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?

Copy link
Author

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?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ValueError might be appropriate.

Copy link
Author

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")
Copy link
Contributor

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")
Copy link
Contributor

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.

@blueyed
Copy link
Contributor

blueyed commented Sep 16, 2018

Got stuck again unfortunately.
The arg should be --xdist-single-db maybe if this is getting picked up again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants