We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The tests that make GET requests to the Django server currently run in the default database (which is specified here).
This is bad for development, as the tests may fail if data is present and then erase some but not all of the data.
It's also a risk for those deploying the container, as the tests are part of the container.
The text was updated successfully, but these errors were encountered:
One solution is to have the tests run in a separate database when a database is needed.
I have made a start on this branch.
Sorry, something went wrong.
No branches or pull requests
The tests that make GET requests to the Django server currently run in the default database (which is specified here).
This is bad for development, as the tests may fail if data is present and then erase some but not all of the data.
It's also a risk for those deploying the container, as the tests are part of the container.
The text was updated successfully, but these errors were encountered: