aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-09-30 14:00:44 -0700
committerMicah Lee <micah@micahflee.com>2022-09-30 14:00:44 -0700
commitee258a43563cc315694ea5a6fcbdf5c19959787e (patch)
tree1705ae427a84d02c42e3872848dda1bd933e86f0 /.github
parentde89d330affa7e4da6866f45738bd440e5ab571a (diff)
downloadonionshare-ee258a43563cc315694ea5a6fcbdf5c19959787e.tar.gz
onionshare-ee258a43563cc315694ea5a6fcbdf5c19959787e.zip
Add desktop tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml25
1 files changed, 24 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 899b12b1..97fed059 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -1,6 +1,7 @@
name: Run Tests
run-name: Run tests 🚀
on: [push]
+
jobs:
test-cli:
runs-on: ubuntu-latest
@@ -17,7 +18,7 @@ jobs:
- uses: actions/cache@v3
with:
path: ~/.cache/pypoetry/virtualenvs
- key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-cli-poetry-${{ hashFiles('cli/poetry.lock') }}
+ key: ${{ runner.os }}-cli-poetry-${{ hashFiles('cli/poetry.lock') }}
- run: cd cli && poetry install
- run: |
cd cli
@@ -26,3 +27,25 @@ jobs:
poetry run onionshare-cli --local-only --receive --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
+
+ 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