Open
Description
Right now I see a lot of tests are duplicated in:
- tests/sql.py
- tests/nosql.py
Would be nice to re-organize the tests to have:
- Tests we run on all the drivers on a single file like
base.py
- SQL specific tests into
sql.py
- noSQL specific tests into
nosql.py
Would also be nice to separate tests depending on the specific things we test, for example I moved validation tests into validation.py
and will do the same for caching.