Try installing some dependencies with chocolatey

This commit is contained in:
Micah Lee 2022-03-29 21:59:39 -07:00
parent 631aff7cce
commit 724e48053c
No known key found for this signature in database
GPG key ID: 403C2657CD994F73

View file

@ -9,7 +9,7 @@ workflows:
jobs: jobs:
- test-cli - test-cli
- test-gui - test-gui
- build-win32: - build-win64:
requires: requires:
- test-cli - test-cli
# - test-gui # - test-gui
@ -67,12 +67,24 @@ jobs:
cd ~/repo/desktop cd ~/repo/desktop
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
build-win32: build-win64:
executor: executor:
name: win/default name: win/default
shell: powershell.exe shell: powershell.exe
steps: steps:
- checkout - checkout
- run: systeminfo - run:
- run: Write-Host 'Hello, Windows' name: Install chocolately dependencies
command: |
choco install python --version=3.9.12
choco install 7zip
choco install go
- run:
name: Install poetry
command: (Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
- run:
name: Install poetry dependencies
command: |
cd ~\project
poetry install