File: conftest.py

package info (click to toggle)
python-petl 1.7.17-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,224 kB
  • sloc: python: 22,617; makefile: 109; xml: 9
file content (10 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
import logging


def pytest_configure():
    org = logging.Logger.debug

    def debug(self, msg, *args, **kwargs):
        org(self, str(msg), *args, **kwargs)

    logging.Logger.debug = debug