コード例 #1
0
ファイル: loading.py プロジェクト: IOSD/hospital
    def is_healthcheck(self, value):
        """Return True if ``value`` is an health check.

        Default implementation uses :func:`hospital.core.is_healthcheck`.

        """
        return is_healthcheck(value)
コード例 #2
0
ファイル: loading.py プロジェクト: Natim/hospital
    def is_healthcheck(self, value):
        """Return True if ``value`` is an health check.

        Default implementation uses :func:`hospital.core.is_healthcheck`.

        """
        return is_healthcheck(value)
コード例 #3
0
ファイル: pytest_plugin.py プロジェクト: IOSD/hospital
def pytest_collection_modifyitems(session, config, items):
    for item in items:
        if is_healthcheck(item.cls) or is_healthcheck(item.function):
            item.add_marker("healthcheck")