• Raphael Beer's avatar
    Refactor: extract testing logics to subpackage 'test' + · 04006c7a
    Raphael Beer authored
      Add your test as /tests/fooban.py and
      amend /tests/__init__.py
    
        ```python
        from tests.fooban import test as test_fooban
        __all__ = ['test_typeahead', ..., 'test_fooban']
        ```
    
      so you can access the test when importing the module
    
        ```python
        from tests import *
        [...]
        result = await test_fooban()
        ```
    04006c7a
reply_deboosting.py 4.12 KB