Comment out desktop tests, and change the build windows workflow trigger

This commit is contained in:
Micah Lee 2022-09-30 16:01:03 -07:00
parent 61b6666264
commit 790fe8250c
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
2 changed files with 26 additions and 25 deletions

View file

@ -1,10 +1,9 @@
name: Build Windows name: Build Windows
run-name: Build win32 and win64 🚀 run-name: Build win32 and win64 🚀
on: on:
workflow_run: push:
workflows: "Run Tests" branches:
types: - github-actions
- completed
jobs: jobs:
win64: win64:

View file

@ -28,24 +28,26 @@ jobs:
poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2 poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2
poetry run onionshare-cli --local-only --chat --auto-stop-timer 2 poetry run onionshare-cli --local-only --chat --auto-stop-timer 2
test-desktop: # skip desktop tests during dev, because they're so slow
runs-on: ubuntu-latest
steps: # test-desktop:
- uses: actions/checkout@v3 # runs-on: ubuntu-latest
- uses: actions/setup-python@v4 # steps:
with: # - uses: actions/checkout@v3
python-version: '3.9' # - uses: actions/setup-python@v4
- name: Install dependencies # with:
run: | # python-version: '3.9'
sudo apt-get update # - name: Install dependencies
sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui # run: |
sudo apt-get install -y xvfb x11-utils libxkbcommon-x11-0 libxcb-randr0-dev libxcb-xtest0-dev libxcb-xinerama0-dev libxcb-shape0-dev libxcb-xkb-dev libxcb-render-util0 libxcb-icccm4 libxcb-keysyms1 libxcb-image0 # sudo apt-get update
pip install --upgrade pip poetry # sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui
- uses: actions/cache@v3 # sudo apt-get install -y xvfb x11-utils libxkbcommon-x11-0 libxcb-randr0-dev libxcb-xtest0-dev libxcb-xinerama0-dev libxcb-shape0-dev libxcb-xkb-dev libxcb-render-util0 libxcb-icccm4 libxcb-keysyms1 libxcb-image0
with: # pip install --upgrade pip poetry
path: ~/.cache/pypoetry/virtualenvs # - uses: actions/cache@v3
key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }} # with:
- run: cd desktop && poetry install # path: ~/.cache/pypoetry/virtualenvs
- run: | # key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }}
cd desktop # - run: cd desktop && poetry install
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py # - run: |
# cd desktop
# QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py