diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-02-11 18:08:07 +0100 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-02-12 00:25:28 +0100 |
commit | 5a25c98cb6d387791e41c7dc240c55814988519a (patch) | |
tree | 9b92cbf881cc8458a0532ce686fe6c8f8e7c4970 /tests/test_generictreemodel.py | |
parent | 21cee6cc4fbc7fb1a28a15840924b0da52b49fca (diff) | |
download | pygobject-5a25c98cb6d387791e41c7dc240c55814988519a.tar.gz |
tests: Make it possible to use pytest directlywip/creiter/pytest-direct
pytest will just import the files passed to it and try to run tests.
Since we need to run some setup code convert the tests directory to
a Python package and do the initialization in __init__.py. This makes
the init code (env vars, typelib search path, dbus) always run when
something from the package gets imported.
python3 setup.py build_tests # build pygobject and tests
py.test-3 tests/test_gi.py # run tests in test_gi.py only
Diffstat (limited to 'tests/test_generictreemodel.py')
-rw-r--r-- | tests/test_generictreemodel.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_generictreemodel.py b/tests/test_generictreemodel.py index 24301109..d99c0560 100644 --- a/tests/test_generictreemodel.py +++ b/tests/test_generictreemodel.py @@ -17,6 +17,7 @@ # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, see <http://www.gnu.org/licenses/>. +from __future__ import absolute_import # system import gc @@ -414,7 +415,3 @@ class TestReturnsAfterError(unittest.TestCase): with ExceptHook(NotImplementedError): res = self.model.iter_parent(child) self.assertEqual(res, None) - - -if __name__ == '__main__': - unittest.main() |