On Sunday 15 March 2015 03:45:16 Yichun Duan wrote: > Thank you. When you say "backend-provided tests", do you mean MySQL > scripts, Oracle scripts or something else like these? Or just some tests > based on django standard, which have marks to tell test runner the backend > they suite? >
I mean standard Django tests, which are located in folders inside the backend source. That is, Oracle-specific tests in django.db.backends.oracle.tests etc. Today, the test-runner will not discover such tests and so will not run them even if the specific backend is in use. In the current Django test-suite, there are several tests marked to run only on a specific backend. I'd also like to remove them from there, and put them into the backends. That's the "clean-up". Shai.
