annotate unit test categories ?

Issue #1696 resolved
Mike Bayer repo owner created an issue

we've identified that I run various subsets of unit tests when working on a particular subsystem, for a quick run of something or a run that ensures basic sanity, etc. nose supports an @attr type of system that can mark tests as within some category (such as "unittest", "functional", etc.).

I can identify some potential categories:

  • "orm_quick" - test.orm.test_query, test.orm.inheritance.test_query
  • "inheritance" - everything in test/orm/inheritance/
  • "unicode" - test.sql.test_types:UnicodeTest, test.sql.unicode, test.orm.test_unitofwork:UnicodeTest
  • "reflection" - test.engine.test_reflection, various reflection related tests in test.dialect
  • "types" - test.sql.test_types, various type-related tests in test.dialect

Comments (2)

  1. Log in to comment