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

Fix tests to reduce chance of database is locked error #4997

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

Conversation

tutou2356
Copy link

Added a mechanism to separate database-modifying tests:
1.Created a SYNCHRONOUS() helper function in utils.py to identify tests that modify the database
2.Added a new pytest command-line option (--synchronous) to run these tests separately
3,Modified the conftest.py to handle this separation logic
Modified tests to avoid database locking:
1.Added @pytest.mark.skipif(not SYNCHRONOUS(), reason="...") to tests that modify the database
2.Ensured database-modifying tests use "-u never" flag when appropriate to avoid unnecessary database updates
3.Updated test classes to avoid database updates in parallel test runs

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

Successfully merging this pull request may close these issues.

1 participant