File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 2525"""
2626from __future__ import print_function
2727
28- from abc import abstractmethod
29- from abc import ABCMeta
28+ from abc import ABCMeta , abstractmethod
3029import argparse
3130from datetime import datetime
3231import logging
5756 "Run CPython tests with multiple cryptography libraries/versions."
5857 ),
5958)
60- parser .color = True
6159parser .add_argument (
6260 '--debug' ,
6361 action = 'store_true' ,
7068)
7169parser .add_argument (
7270 '--ssl' ,
73- choices = [ 'openssl' , 'awslc' , 'libressl' ] ,
71+ choices = ( 'openssl' , 'awslc' , 'libressl' ) ,
7472 default = None ,
7573 help = "Which SSL lib to test. If not specified, all are tested." ,
7674)
7775parser .add_argument (
7876 '--ssl-versions' ,
7977 nargs = '+' ,
8078 default = None ,
81- help = "SSL lib version(s) , default depends on value passed to --ssl" ,
79+ help = "SSL lib versions , default depends on libs passed to --ssl" ,
8280)
8381parser .add_argument (
8482 '--tests' ,
You can’t perform that action at this time.
0 commit comments