2018-10-17 01:51:49 -04:00
|
|
|
version: 2
|
2018-11-25 16:20:05 -05:00
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
test:
|
|
|
|
jobs:
|
2020-10-14 23:42:20 -04:00
|
|
|
- test-cli
|
|
|
|
- test-gui
|
2018-11-25 16:20:05 -05:00
|
|
|
|
2018-10-17 01:51:49 -04:00
|
|
|
jobs:
|
2020-10-14 23:42:20 -04:00
|
|
|
test-cli:
|
2018-10-17 01:51:49 -04:00
|
|
|
docker:
|
2021-12-30 02:49:53 -05:00
|
|
|
- image: circleci/python:3.9-bullseye
|
2019-01-16 00:54:39 -05:00
|
|
|
|
2018-10-17 01:51:49 -04:00
|
|
|
working_directory: ~/repo
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
|
2020-03-22 18:32:25 -04:00
|
|
|
- run:
|
2020-10-14 23:44:21 -04:00
|
|
|
name: Install dependencies
|
|
|
|
command: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install tor obfs4proxy
|
|
|
|
pip install poetry
|
|
|
|
cd ~/repo/cli
|
|
|
|
poetry install
|
2020-03-22 18:32:25 -04:00
|
|
|
|
2018-10-17 01:51:49 -04:00
|
|
|
- run:
|
2020-10-14 23:42:20 -04:00
|
|
|
name: Run tests
|
2018-10-17 01:51:49 -04:00
|
|
|
command: |
|
2020-10-14 23:42:20 -04:00
|
|
|
cd ~/repo/cli
|
|
|
|
poetry run pytest -v ./tests
|
2021-11-11 19:43:09 -05:00
|
|
|
poetry run onionshare-cli --local-only ./tests --auto-stop-timer 2
|
|
|
|
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
|
2020-10-14 23:42:20 -04:00
|
|
|
|
|
|
|
test-gui:
|
|
|
|
docker:
|
2021-12-30 02:49:53 -05:00
|
|
|
- image: circleci/python:3.9-bullseye
|
2020-10-14 23:42:20 -04:00
|
|
|
|
|
|
|
working_directory: ~/repo
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-10-17 01:51:49 -04:00
|
|
|
|
|
|
|
- run:
|
2020-10-14 23:44:21 -04:00
|
|
|
name: Install dependencies
|
|
|
|
command: |
|
|
|
|
sudo apt-get update
|
2020-11-01 14:50:11 -05:00
|
|
|
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
|
2020-10-14 23:44:21 -04:00
|
|
|
cd ~/repo/desktop
|
2021-12-19 20:33:11 -05:00
|
|
|
poetry install
|
2018-10-17 01:58:05 -04:00
|
|
|
|
2018-10-17 01:59:13 -04:00
|
|
|
- run:
|
2020-10-14 23:42:20 -04:00
|
|
|
name: Run tests
|
2018-10-17 01:51:49 -04:00
|
|
|
command: |
|
2020-10-14 23:42:20 -04:00
|
|
|
cd ~/repo/desktop
|
2021-12-26 07:37:56 -05:00
|
|
|
xvfb-run poetry run ./tests/run.sh
|