@@ -104,6 +104,7 @@ def __init__(self, session, venv, msg, args):
104
104
105
105
def __enter__ (self ):
106
106
self .report .logaction_start (self )
107
+ return self
107
108
108
109
def __exit__ (self , * args ):
109
110
self .report .logaction_finish (self )
@@ -445,8 +446,7 @@ def _makesdist(self):
445
446
"#avoiding-expensive-sdist" .format (setup )
446
447
)
447
448
raise SystemExit (1 )
448
- action = self .newaction (None , "packaging" )
449
- with action :
449
+ with self .newaction (None , "packaging" ) as action :
450
450
action .setactivity ("sdist-make" , setup )
451
451
self .make_emptydir (self .config .distdir )
452
452
action .popen (
@@ -497,8 +497,7 @@ def setupenv(self, venv):
497
497
if not venv .matching_platform ():
498
498
venv .status = "platform mismatch"
499
499
return # we simply omit non-matching platforms
500
- action = self .newaction (venv , "getenv" , venv .envconfig .envdir )
501
- with action :
500
+ with self .newaction (venv , "getenv" , venv .envconfig .envdir ) as action :
502
501
venv .status = 0
503
502
default_ret_code = 1
504
503
envlog = self .resultlog .get_envlog (venv .name )
@@ -536,14 +535,12 @@ def setupenv(self, venv):
536
535
return True
537
536
538
537
def finishvenv (self , venv ):
539
- action = self .newaction (venv , "finishvenv" )
540
- with action :
538
+ with self .newaction (venv , "finishvenv" ):
541
539
venv .finish ()
542
540
return True
543
541
544
542
def developpkg (self , venv , setupdir ):
545
- action = self .newaction (venv , "developpkg" , setupdir )
546
- with action :
543
+ with self .newaction (venv , "developpkg" , setupdir ) as action :
547
544
try :
548
545
venv .developpkg (setupdir , action )
549
546
return True
@@ -560,8 +557,7 @@ def installpkg(self, venv, path):
560
557
:rtype: bool
561
558
"""
562
559
self .resultlog .set_header (installpkg = py .path .local (path ))
563
- action = self .newaction (venv , "installpkg" , path )
564
- with action :
560
+ with self .newaction (venv , "installpkg" , path ) as action :
565
561
try :
566
562
venv .installpkg (path , action )
567
563
return True
@@ -635,8 +631,7 @@ def runenvreport(self, venv):
635
631
Run an environment report to show which package
636
632
versions are installed in the venv
637
633
"""
638
- action = self .newaction (venv , "envreport" )
639
- with action :
634
+ with self .newaction (venv , "envreport" ) as action :
640
635
packages = self .hook .tox_runenvreport (venv = venv , action = action )
641
636
action .setactivity ("installed" , "," .join (packages ))
642
637
envlog = self .resultlog .get_envlog (venv .name )
0 commit comments