Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
12 lines
235 B
Python
12 lines
235 B
Python
# -*- 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")
|