Skip to content

Commit

Permalink
make pyinstaller tests compatible with pyinstaller 5
Browse files Browse the repository at this point in the history
  • Loading branch information
tardyp committed Apr 20, 2022
1 parent 2c0fce7 commit 1ffec77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -44,7 +44,7 @@ jobs:
# Note that installing www/base depends on frontend_deps target being built, which is
# a dependency of the tarballs target.
pip install -e www/base
pyinstaller -F pyinstaller/buildbot-worker.spec
pyinstaller pyinstaller/buildbot-worker.spec
# we test the new generated binary with the global virtualenv
SANDBOXED_WORKER_PATH=`pwd`/dist/buildbot-worker trial --reporter=text --rterrors buildbot.test.integration.interop
- persist_to_workspace:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -169,4 +169,4 @@ finishrelease:

pyinstaller: virtualenv
$(PIP) install pyinstaller
$(VENV_NAME)/bin/pyinstaller -F pyinstaller/buildbot-worker.spec
$(VENV_NAME)/bin/pyinstaller pyinstaller/buildbot-worker.spec
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -30,7 +30,7 @@ test_script:
- ps: |
echo $ENV:PYTHON
if ($env:PYTHON -imatch 'C:\\Python27') {
iex 'pyinstaller -F pyinstaller/buildbot-worker.spec'
iex 'pyinstaller pyinstaller/buildbot-worker.spec'
iex 'appveyor PushArtifact dist\\buildbot-worker.exe'
}
Expand Down

0 comments on commit 1ffec77

Please sign in to comment.