@@ -594,25 +594,9 @@ def showconfig(self):
594
594
self .report .tw .line ()
595
595
for envconfig in self .config .envconfigs .values ():
596
596
self .report .line ("[testenv:%s]" % envconfig .envname , bold = True )
597
- self .report .line (" basepython=%s" % envconfig .basepython )
598
- self .report .line (" pythoninfo=%s" % (envconfig .python_info ,))
599
- self .report .line (" envpython=%s" % envconfig .envpython )
600
- self .report .line (" envtmpdir=%s" % envconfig .envtmpdir )
601
- self .report .line (" envbindir=%s" % envconfig .envbindir )
602
- self .report .line (" envlogdir=%s" % envconfig .envlogdir )
603
- self .report .line (" changedir=%s" % envconfig .changedir )
604
- self .report .line (" args_are_path=%s" % envconfig .args_are_paths )
605
- self .report .line (" install_command=%s" %
606
- envconfig .install_command )
607
- self .report .line (" commands=" )
608
- for command in envconfig .commands :
609
- self .report .line (" %s" % command )
610
- self .report .line (" deps=%s" % envconfig .deps )
611
- self .report .line (" envdir= %s" % envconfig .envdir )
612
- self .report .line (" downloadcache=%s" % envconfig .downloadcache )
613
- self .report .line (" usedevelop=%s" % envconfig .usedevelop )
614
- self .report .line (" setenv=%s" % envconfig .setenv )
615
- self .report .line (" passenv=%s" % envconfig .passenv )
597
+ for attr in self .config ._parser ._testenv_attr :
598
+ self .report .line (" %-15s = %s"
599
+ % (attr .name , getattr (envconfig , attr .name )))
616
600
617
601
def showenvs (self ):
618
602
for env in self .config .envlist :
0 commit comments