You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows people to use imports as adhoc setup/teardown options (albeit without the ability to ignore setup/teardown errors).
Create command-line option "--shared-context=True" that is parsed and passed into run_testsets.
If shared-context is true, testsets and benchmarks don't get fresh contexts, they reuse the same one (option to receive one already exists).
Add test case for this (functional test)
Add changelog note about this: in the next release, it will be usable but off by default (to avoid unexpected behavior with existing tests), in the one after, it will be on by default (gives more predictable user behavior).
To think about: change import behavior, or add an 'include' element, such that the imported testset executes after current test/benchmark elements, but before the final ones in current testset.
The text was updated successfully, but these errors were encountered:
Quick question: when I try to run the tests (with run_tests.sh ) I keep getting the following error: "django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet."
I'm building and running pyresttest with py3, do you have any ideas?
This allows people to use imports as adhoc setup/teardown options (albeit without the ability to ignore setup/teardown errors).
The text was updated successfully, but these errors were encountered: