You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # -*- coding: utf-8 -*-
-
- """
- It appears the default distutils test suite doesn't play nice with
- ``setUpClass`` thereby making some tests fail. Using ``unittest2`` to load
- tests seems to work around that issue.
-
- http://stackoverflow.com/a/17004409/753501
- """
-
- import os.path
-
- import unittest
-
- def additional_tests():
- project_root = os.path.split(os.path.dirname(__file__))[0]
- return unittest.defaultTestLoader.discover(project_root)
|