Skip to content

Commit

Permalink
CI Test: Running pyinstaller from inside runsharp
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Jan 22, 2019
1 parent 7a1df6c commit 77a8aed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ steps:
sudo python setup.py -q install
sudo pytest -v --junitxml=junit/test-results.xml
sudo mv examples/data/14061619.png examples/data/14061619_mac.png
sudo python -m PyInstaller runsharp/SHARPpy-osx.spec --noconsole --onefile --log-level DEBUG
cd runsharp
sudo python -m PyInstaller SHARPpy-osx.spec --noconsole --onefile --log-level DEBUG
cd ..
sudo chmod 777 dist/SHARPpy.app
ls -lh dist
displayName: "Installing code and running tests (macOS)"
Expand All @@ -88,7 +90,9 @@ steps:
pip install -e .
pytest -v --junitxml=junit/test-results.xml
move examples\\data\\14061619.png examples\\data\\14061619_win.png
python -m PyInstaller runsharp/SHARPpy-win7-64.spec --log-level DEBUG
cd runsharp
python -m PyInstaller SHARPpy-win7-64.spec --log-level DEBUG
cd ..
displayName: "Installing code and running tests (Windows)"
condition: eq( variables['Agent.OS'], 'Windows_NT')

Expand Down

0 comments on commit 77a8aed

Please sign in to comment.