From 243e3005170be5d29cd383bcfd7065cd405cb045 Mon Sep 17 00:00:00 2001 From: Glen Smith Date: Thu, 3 Sep 2020 09:04:46 -0600 Subject: [PATCH] add inspection for 'which python' --- tests/integration/test_cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index 5f31a5dd..f87a3723 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -208,6 +208,7 @@ pyver = "which python" f.write(contents) c = p.pipenv('scripts') assert 'pyver' in c.out + assert 'which python' in c.out @pytest.mark.cli