tests: fix py2

This commit is contained in:
Casper da Costa-Luis 2020-07-12 13:07:08 +01:00
parent d3be02bc99
commit 3c87541d21
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import sys
if sys.version_info[:2] > (3, 6):
from py37_asyncio import * # NOQA
else:
from tests_tqdm import SkipTest
raise SkipTest