summaryrefslogtreecommitdiffstats
path: root/Lib/test/ssltests.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/ssltests.py')
-rw-r--r--Lib/test/ssltests.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/ssltests.py b/Lib/test/ssltests.py
index 5073ae1..36561b9 100644
--- a/Lib/test/ssltests.py
+++ b/Lib/test/ssltests.py
@@ -6,10 +6,10 @@ import sys
import subprocess
TESTS = [
- 'test_asyncio', 'test_ensurepip.py', 'test_ftplib', 'test_hashlib',
+ 'test_ensurepip.py', 'test_ftplib', 'test_hashlib',
'test_hmac', 'test_httplib', 'test_imaplib', 'test_nntplib',
'test_poplib', 'test_ssl', 'test_smtplib', 'test_smtpnet',
- 'test_urllib2_localnet', 'test_venv', 'test_xmlrpc'
+ 'test_urllib2_localnet', 'test_xmlrpc'
]
def run_regrtests(*extra_args):
@@ -17,7 +17,7 @@ def run_regrtests(*extra_args):
args = [
sys.executable,
'-Werror', '-bb', # turn warnings into exceptions
- '-m', 'test',
+ '-m', 'test.regrtest',
]
if not extra_args:
args.extend([
@@ -25,7 +25,6 @@ def run_regrtests(*extra_args):
'-w', # re-run failed tests with -v
'-u', 'network', # use network
'-u', 'urlfetch', # download test vectors
- '-j', '0' # use multiple CPUs
])
else:
args.extend(extra_args)