sshuttle/tests/conftest.py
Bastian Venthur d085a419b2 updated path
2018-10-17 20:52:04 +11:00

11 lines
216 B
Python

import sys
if sys.version_info >= (3, 0):
good_python = sys.version_info >= (3, 5)
else:
good_python = sys.version_info >= (2, 7)
collect_ignore = []
if not good_python:
collect_ignore.append("client")