summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-12 16:34:10 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-12 16:34:10 +0100
commit82c14d6c371cdbd7c847f6c6cd7cf12e3cdf8237 (patch)
tree9413e17ba146ea010c581c9ad74e3269c6c1383a
parentc0bd8112de5c30582665121a5ee1061210e49fd9 (diff)
downloadaioeventlet-82c14d6c371cdbd7c847f6c6cd7cf12e3cdf8237.tar.gz
Add run_aiotest.py
-rw-r--r--run_aiotest.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/run_aiotest.py b/run_aiotest.py
new file mode 100644
index 0000000..2b3ce09
--- /dev/null
+++ b/run_aiotest.py
@@ -0,0 +1,8 @@
+import aioeventlet
+import aiotest.run
+import eventlet
+
+config = aiotest.TestConfig()
+config.new_event_pool_policy = aioeventlet.EventLoopPolicy
+config.sleep = eventlet.sleep
+aiotest.run.main(config)