Skip to content

Commit

Permalink
add conftest to ignore async for 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
swathipil committed Aug 9, 2021
1 parent 28a6dfd commit fd832e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import sys

collect_ignore = []
if sys.version_info < (3, 5):
collect_ignore.append("asynctests")

0 comments on commit fd832e4

Please sign in to comment.