21
21
import tox
22
22
from tox .constants import INFO
23
23
from tox .interpreters import Interpreters , NoInterpreterInfo
24
+ from .parallel import add_parallel_flags , ENV_VAR_KEY as PARALLEL_ENV_VAR_KEY , add_parallel_config
24
25
25
26
hookimpl = tox .hookimpl
26
27
"""DEPRECATED - REMOVE - this is left for compatibility with plugins importing this from here.
@@ -59,7 +60,13 @@ class Parser:
59
60
"""Command line and ini-parser control object."""
60
61
61
62
def __init__ (self ):
62
- self .argparser = argparse .ArgumentParser (description = "tox options" , add_help = False )
63
+ class HelpFormatter (argparse .ArgumentDefaultsHelpFormatter ):
64
+ def __init__ (self , prog ):
65
+ super (HelpFormatter , self ).__init__ (prog , max_help_position = 35 , width = 190 )
66
+
67
+ self .argparser = argparse .ArgumentParser (
68
+ description = "tox options" , add_help = False , prog = "tox" , formatter_class = HelpFormatter
69
+ )
63
70
self ._testenv_attr = []
64
71
65
72
def add_argument (self , * args , ** kwargs ):
@@ -274,7 +281,9 @@ def parse_cli(args, pm):
274
281
print (get_version_info (pm ))
275
282
raise SystemExit (0 )
276
283
interpreters = Interpreters (hook = pm .hook )
277
- config = Config (pluginmanager = pm , option = option , interpreters = interpreters , parser = parser )
284
+ config = Config (
285
+ pluginmanager = pm , option = option , interpreters = interpreters , parser = parser , args = args
286
+ )
278
287
return config , option
279
288
280
289
@@ -413,6 +422,7 @@ def tox_addoption(parser):
413
422
dest = "sdistonly" ,
414
423
help = "only perform the sdist packaging activity." ,
415
424
)
425
+ add_parallel_flags (parser )
416
426
parser .add_argument (
417
427
"--parallel--safe-build" ,
418
428
action = "store_true" ,
@@ -799,6 +809,8 @@ def develop(testenv_config, value):
799
809
help = "list of extras to install with the source distribution or develop install" ,
800
810
)
801
811
812
+ add_parallel_config (parser )
813
+
802
814
803
815
def cli_skip_missing_interpreter (parser ):
804
816
class SkipMissingInterpreterAction (argparse .Action ):
@@ -822,7 +834,7 @@ def __call__(self, parser, namespace, values, option_string=None):
822
834
class Config (object ):
823
835
"""Global Tox config object."""
824
836
825
- def __init__ (self , pluginmanager , option , interpreters , parser ):
837
+ def __init__ (self , pluginmanager , option , interpreters , parser , args ):
826
838
self .envconfigs = OrderedDict ()
827
839
"""Mapping envname -> envconfig"""
828
840
self .invocationcwd = py .path .local ()
@@ -831,6 +843,7 @@ def __init__(self, pluginmanager, option, interpreters, parser):
831
843
self .option = option
832
844
self ._parser = parser
833
845
self ._testenv_attr = parser ._testenv_attr
846
+ self .args = args
834
847
835
848
"""option namespace containing all parsed command line options"""
836
849
@@ -1040,7 +1053,7 @@ def __init__(self, config, ini_path, ini_data): # noqa
1040
1053
# factors stated in config envlist
1041
1054
stated_envlist = reader .getstring ("envlist" , replace = False )
1042
1055
if stated_envlist :
1043
- for env in _split_env ( stated_envlist ) :
1056
+ for env in config . envlist :
1044
1057
known_factors .update (env .split ("-" ))
1045
1058
1046
1059
# configure testenvs
@@ -1119,6 +1132,9 @@ def make_envconfig(self, name, section, subs, config, replace=True):
1119
1132
res = reader .getlist (env_attr .name , sep = " " )
1120
1133
elif atype == "line-list" :
1121
1134
res = reader .getlist (env_attr .name , sep = "\n " )
1135
+ elif atype == "env-list" :
1136
+ res = reader .getstring (env_attr .name , replace = False )
1137
+ res = tuple (_split_env (res ))
1122
1138
else :
1123
1139
raise ValueError ("unknown type {!r}" .format (atype ))
1124
1140
if env_attr .postprocess :
@@ -1133,6 +1149,7 @@ def make_envconfig(self, name, section, subs, config, replace=True):
1133
1149
1134
1150
def _getenvdata (self , reader , config ):
1135
1151
candidates = (
1152
+ os .environ .get (PARALLEL_ENV_VAR_KEY ),
1136
1153
self .config .option .env ,
1137
1154
os .environ .get ("TOXENV" ),
1138
1155
reader .getstring ("envlist" , replace = False ),
@@ -1167,6 +1184,8 @@ def _getenvdata(self, reader, config):
1167
1184
1168
1185
def _split_env (env ):
1169
1186
"""if handed a list, action="append" was used for -e """
1187
+ if env is None :
1188
+ return []
1170
1189
if not isinstance (env , list ):
1171
1190
env = [e .split ("#" , 1 )[0 ].strip () for e in env .split ("\n " )]
1172
1191
env = "," .join ([e for e in env if e ])
0 commit comments