You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
235 B

# -*- coding: utf-8 -*-
from sys import version_info as v
collect_ignore = []
if not (v[0] >= 3 and v[1] >= 5):
collect_ignore.append("test_async.py")
if not (v[0] >= 3 and v[1] >= 7):
collect_ignore.append("test_trio.py")