We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 226177b + 081954c commit bf60a6dCopy full SHA for bf60a6d
.travis.yml
@@ -29,6 +29,11 @@ sudo: true
29
dist: xenial
30
31
jobs:
32
+ include:
33
+ - name: "Python: 3.8/uvloop"
34
+ python: "3.8"
35
+ install:
36
+ - pip install uvloop
37
allow_failures:
38
python:
39
- "3.6"
tests/utils.py
@@ -8,6 +8,12 @@
8
import http.client
9
from functools import wraps
10
11
+try:
12
+ import uvloop
13
+ asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
14
+except:
15
+ pass
16
+
17
18
class Gnatsd:
19
def __init__(
0 commit comments