From ee5a0d27bd58d16a7231b8f8c2e1e762b9d3668c Mon Sep 17 00:00:00 2001 From: Chris Wood Date: Mon, 7 Oct 2019 11:30:10 -0400 Subject: [PATCH] Add 'pip freeze' step to 'pyinstaller' tox testenv --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e5595a9d6..afc237069 100644 --- a/tox.ini +++ b/tox.ini @@ -185,7 +185,9 @@ deps = # Setting PYTHONHASHSEED to a known value assists with reproducible builds. # See https://pyinstaller.readthedocs.io/en/stable/advanced-topics.html#creating-a-reproducible-build setenv=PYTHONHASHSEED=1 -commands=pyinstaller -y --clean pyinstaller.spec +commands= + pip freeze + pyinstaller -y --clean pyinstaller.spec [testenv:tarballs] deps =