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
It would be nice if there were a way to run unit tests before integration tests, or even only unit tests or integration tests.
unit test, at least in the Django app I'm working on, would be defined as a subclass of unittest.TestCase but not of TransactionTestCase.
unittest.TestCase
This would allow users to run more tests more often by virtue of moving unit-tests to an earlier phase, and integration tests to a later one.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice if there were a way to run unit tests before integration tests, or even only unit tests or integration tests.
unit test, at least in the Django app I'm working on, would be defined as a subclass of
unittest.TestCase
but not of TransactionTestCase.This would allow users to run more tests more often by virtue of moving unit-tests to an earlier phase, and integration tests to a later one.
The text was updated successfully, but these errors were encountered: