Add 'pip freeze' step to 'pyinstaller' tox testenv

This commit is contained in:
Chris Wood 2019-10-07 11:30:10 -04:00
parent 9fc697d798
commit ee5a0d27bd

View File

@ -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 =