summaryrefslogtreecommitdiff
path: root/runtests.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@google.com>2012-12-18 16:59:48 -0800
committerGuido van Rossum <guido@google.com>2012-12-18 16:59:48 -0800
commitc5ffed6a569b07bc79a2a0c4f44cf142d6a58846 (patch)
treead64a0ca4a09cc1b632953d0c0cb2025b5ec8c22 /runtests.py
parent295732ec2fdf9dcdd432cb01c5608a64c7055dab (diff)
downloadtrollius-c5ffed6a569b07bc79a2a0c4f44cf142d6a58846.tar.gz
Tasks can wait for Futures.
Diffstat (limited to 'runtests.py')
-rw-r--r--runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index c6ffa3b..fa78457 100644
--- a/runtests.py
+++ b/runtests.py
@@ -7,7 +7,7 @@ import unittest
def load_tests():
- mods = ['events', 'futures']
+ mods = ['events', 'futures', 'tasks']
test_mods = ['%s_test' % name for name in mods]
tulip = __import__('tulip', fromlist=test_mods)