mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-25 23:39:43 -05:00
Comment out desktop tests, and change the build windows workflow trigger
This commit is contained in:
parent
61b6666264
commit
790fe8250c
7
.github/workflows/build-windows.yml
vendored
7
.github/workflows/build-windows.yml
vendored
@ -1,10 +1,9 @@
|
||||
name: Build Windows
|
||||
run-name: Build win32 and win64 🚀
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: "Run Tests"
|
||||
types:
|
||||
- completed
|
||||
push:
|
||||
branches:
|
||||
- github-actions
|
||||
|
||||
jobs:
|
||||
win64:
|
||||
|
44
.github/workflows/tests.yml
vendored
44
.github/workflows/tests.yml
vendored
@ -28,24 +28,26 @@ jobs:
|
||||
poetry run onionshare-cli --local-only --website ../docs --auto-stop-timer 2
|
||||
poetry run onionshare-cli --local-only --chat --auto-stop-timer 2
|
||||
|
||||
test-desktop:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.9'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui
|
||||
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
|
||||
pip install --upgrade pip poetry
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cache/pypoetry/virtualenvs
|
||||
key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }}
|
||||
- run: cd desktop && poetry install
|
||||
- run: |
|
||||
cd desktop
|
||||
QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
|
||||
# skip desktop tests during dev, because they're so slow
|
||||
|
||||
# test-desktop:
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: actions/checkout@v3
|
||||
# - uses: actions/setup-python@v4
|
||||
# with:
|
||||
# python-version: '3.9'
|
||||
# - name: Install dependencies
|
||||
# run: |
|
||||
# sudo apt-get update
|
||||
# sudo apt-get install -y tor obfs4proxy gcc python3-dev python3-pyside2.qtcore python3-pyside2.qtwidgets python3-pyside2.qtgui
|
||||
# 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
|
||||
# pip install --upgrade pip poetry
|
||||
# - uses: actions/cache@v3
|
||||
# with:
|
||||
# path: ~/.cache/pypoetry/virtualenvs
|
||||
# key: ${{ runner.os }}-desktop-poetry-${{ hashFiles('desktop/poetry.lock') }}
|
||||
# - run: cd desktop && poetry install
|
||||
# - run: |
|
||||
# cd desktop
|
||||
# QT_DEBUG_PLUGINS=1 xvfb-run poetry run pytest -v ./tests/test_gui_*.py
|
||||
|
Loading…
Reference in New Issue
Block a user