summaryrefslogtreecommitdiff
path: root/run_tests.py
Commit message (Collapse)AuthorAgeFilesLines
* - coverage was not working (and needs to be fixed in SQLAlchemy too),Mike Bayer2014-09-141-2/+16
| | | | | | | | | | go back to using a "bootstrap" system where we load in pytestplugin/ noseplugin via file importing, plugin/ is not used as a package. - identify the pytest_sessionstart hook as the best place to do plugin_base.post_begin() and actually begin importing main modules; this is where coverage has actually started. - we're now targeting 1.0.0 as this has to be ported to SQLAlchemy. - start using .coveragerc
* - move pretty much all of sqlalchemy.testing over for now, as we'dMike Bayer2014-09-141-1/+1
| | | | | | | | | | | | like to run tests against 0.8 and even late 0.7 versions with the same capabilities, as well as run parallel testing against all of them. we need a consistent system to get that all to work, so for now we have the whole SQLA system shoved into here, not ideal but we have a very good testing situation for now. Once we target 0.9.4 at the lowest we should be able to move all this out. - re-support 0.7, starting at 0.7.6 which is where things mostly work. All tests, taking into account known skips and fails which are added here for 0.7, early 0.8s, pass on 0.7.9.
* - bootstrap supportMike Bayer2014-09-131-0/+3
- some workarounds to get 0.8 mostly working