summaryrefslogtreecommitdiff
path: root/test/testpy
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2018-07-27 20:10:27 -0400
committerJon Moss <me@jonathanmoss.me>2018-07-30 23:50:17 -0400
commit3a056c04090ae58bef7ed8af9abf68228d8ff41a (patch)
treed309b3075874077006870a45c00eb01ae1c9fc31 /test/testpy
parent48e17630ad6eabeaaeb105b2371de914728796c1 (diff)
downloadandroid-node-v8-3a056c04090ae58bef7ed8af9abf68228d8ff41a.tar.gz
android-node-v8-3a056c04090ae58bef7ed8af9abf68228d8ff41a.tar.bz2
android-node-v8-3a056c04090ae58bef7ed8af9abf68228d8ff41a.zip
test: remove custom AsyncHooksTestConfiguration
Has the same behavior as `ParallelTestConfiguration` PR-URL: https://github.com/nodejs/node/pull/22008 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'test/testpy')
-rw-r--r--test/testpy/__init__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/testpy/__init__.py b/test/testpy/__init__.py
index 455d57f4d9..8b5b2f6b48 100644
--- a/test/testpy/__init__.py
+++ b/test/testpy/__init__.py
@@ -165,18 +165,6 @@ class AddonTestConfiguration(SimpleTestConfiguration):
SimpleTestCase(test, file_path, arch, mode, self.context, self, self.additional_flags))
return result
-class AsyncHooksTestConfiguration(SimpleTestConfiguration):
- def __init__(self, context, root, section, additional=None):
- super(AsyncHooksTestConfiguration, self).__init__(context, root, section,
- additional)
-
- def ListTests(self, current_path, path, arch, mode):
- result = super(AsyncHooksTestConfiguration, self).ListTests(
- current_path, path, arch, mode)
- for test in result:
- test.parallel = True
- return result
-
class AbortTestConfiguration(SimpleTestConfiguration):
def __init__(self, context, root, section, additional=None):
super(AbortTestConfiguration, self).__init__(context, root, section,