summaryrefslogtreecommitdiff
path: root/conftest.py
blob: b42322963cd46bd30a827a32706de0e3608a62b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""test configuration for pytest."""

import sys


collect_ignore = [
    # imports win32api, so not viable on some systems
    'cherrypy/process/win32.py',
]


if sys.version_info < (3, 6):
    # Modules in docs require Python 3.6
    collect_ignore.append('docs')