From f6d690406b3f6d8040170a072644447f0c666cbb Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Mon, 7 Oct 2019 15:42:24 +0530 Subject: [PATCH] nox: Log details when reusing existing common-wheels --- noxfile.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/noxfile.py b/noxfile.py index cad7ba077..3244add5f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -94,6 +94,12 @@ def test(session): "-w", LOCATIONS["common-wheels"], "-r", REQUIREMENTS["common-wheels"], ) + else: + msg = ( + "Re-using existing common-wheels at {}." + .format(LOCATIONS["common-wheels"]) + ) + session.log(msg) # Install sources run_with_protected_pip(session, "install", ".")