Ori.livneh has uploaded a new change for review. https://gerrit.wikimedia.org/r/172290
Change subject: Re-add explicit test loader in tests/__init__.py ...................................................................... Re-add explicit test loader in tests/__init__.py tox autodiscovers the tests, but a plain 'python setup.py test' does not. Change-Id: I9bd45f4108c7e0e39328fbd487e8331abaf19b46 --- M tests/__init__.py 1 file changed, 12 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/debs/pybal refs/changes/90/172290/1 diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..d0f1ca3 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +""" + PyBal unit tests + ~~~~~~~~~~~~~~~~ + + This module is the main entry point for the unit tests. + +""" +# flake8: noqa + +from .test_util import * +from .test_ipvs import * -- To view, visit https://gerrit.wikimedia.org/r/172290 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I9bd45f4108c7e0e39328fbd487e8331abaf19b46 Gerrit-PatchSet: 1 Gerrit-Project: operations/debs/pybal Gerrit-Branch: master Gerrit-Owner: Ori.livneh <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
