Package logilab :: Package common :: Package test :: Module unittest_pytest
[frames] | no frames]

Module unittest_pytest

source code

Classes
  ModuleFunctionTC
Variables
  CONF_FILE = 'pytestconf.py'
  DJANGO_FOUND = False
  PYTEST_DOC = '%prog [OPTIONS] [testfile [testpattern]]\n\nexam...
  TESTDIR_RE = re.compile(r'^(unit)?tests?$')
  TESTFILE_RE = re.compile(r'^((unit)?test.*|smoketest)\.py$')
  __package__ = 'logilab.common.test'
Variables Details

PYTEST_DOC

Value:
'''%prog [OPTIONS] [testfile [testpattern]]

examples:

pytest path/to/mytests.py
pytest path/to/mytests.py TheseTests
pytest path/to/mytests.py TheseTests.test_thisone
pytest path/to/mytests.py -m \'(not long and database) or regr\'
...