Skip to content

Commit cb2dff1

Browse files
gaborbernatobestwalter
authored andcommitted
prefer using with as for action (#822)
1 parent 49b915c commit cb2dff1

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

tox/session.py

+7-12
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ def __init__(self, session, venv, msg, args):
104104

105105
def __enter__(self):
106106
self.report.logaction_start(self)
107+
return self
107108

108109
def __exit__(self, *args):
109110
self.report.logaction_finish(self)
@@ -445,8 +446,7 @@ def _makesdist(self):
445446
"#avoiding-expensive-sdist".format(setup)
446447
)
447448
raise SystemExit(1)
448-
action = self.newaction(None, "packaging")
449-
with action:
449+
with self.newaction(None, "packaging") as action:
450450
action.setactivity("sdist-make", setup)
451451
self.make_emptydir(self.config.distdir)
452452
action.popen(
@@ -497,8 +497,7 @@ def setupenv(self, venv):
497497
if not venv.matching_platform():
498498
venv.status = "platform mismatch"
499499
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:
502501
venv.status = 0
503502
default_ret_code = 1
504503
envlog = self.resultlog.get_envlog(venv.name)
@@ -536,14 +535,12 @@ def setupenv(self, venv):
536535
return True
537536

538537
def finishvenv(self, venv):
539-
action = self.newaction(venv, "finishvenv")
540-
with action:
538+
with self.newaction(venv, "finishvenv"):
541539
venv.finish()
542540
return True
543541

544542
def developpkg(self, venv, setupdir):
545-
action = self.newaction(venv, "developpkg", setupdir)
546-
with action:
543+
with self.newaction(venv, "developpkg", setupdir) as action:
547544
try:
548545
venv.developpkg(setupdir, action)
549546
return True
@@ -560,8 +557,7 @@ def installpkg(self, venv, path):
560557
:rtype: bool
561558
"""
562559
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:
565561
try:
566562
venv.installpkg(path, action)
567563
return True
@@ -635,8 +631,7 @@ def runenvreport(self, venv):
635631
Run an environment report to show which package
636632
versions are installed in the venv
637633
"""
638-
action = self.newaction(venv, "envreport")
639-
with action:
634+
with self.newaction(venv, "envreport") as action:
640635
packages = self.hook.tox_runenvreport(venv=venv, action=action)
641636
action.setactivity("installed", ",".join(packages))
642637
envlog = self.resultlog.get_envlog(venv.name)

tox/venv.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,7 @@ def _getenv(self, testcommand=False):
352352
return env
353353

354354
def test(self, redirect=False):
355-
action = self.session.newaction(self, "runtests")
356-
with action:
355+
with self.session.newaction(self, "runtests") as action:
357356
self.status = 0
358357
self.session.make_emptydir(self.envconfig.envtmpdir)
359358
self.envconfig.envtmpdir.ensure(dir=1)

0 commit comments

Comments
 (0)