mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
# To run the tests, CircleCI needs these environment variables:
|
|
# QT_EMAIL - email address for a Qt account
|
|
# QT_PASSWORD - password for a Qt account
|
|
# (Unfortunately you can't install Qt without logging in.)
|
|
|
|
version: 2
|
|
workflows:
|
|
version: 2
|
|
test:
|
|
jobs:
|
|
- test-cli
|
|
- test-gui
|
|
|
|
jobs:
|
|
test-cli:
|
|
docker:
|
|
- image: circleci/python:3.8-buster
|
|
|
|
working_directory: ~/repo
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install tor obfs4proxy
|
|
pip install poetry
|
|
cd ~/repo/cli
|
|
poetry install
|
|
|
|
- run:
|
|
name: Run tests
|
|
command: |
|
|
cd ~/repo/cli
|
|
poetry run pytest -v ./tests
|
|
|
|
test-gui:
|
|
docker:
|
|
- image: circleci/python:3.8-buster
|
|
|
|
working_directory: ~/repo
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y xvfb tor obfs4proxy gcc python3-dev
|
|
cd ~/repo/desktop
|
|
pip install briefcase pytest pytest-briefcase pytest-faulthandler pytest-qt
|
|
pip install $(python -c 'import toml; print(" ".join(toml.loads(open("pyproject.toml").read())["tool"]["briefcase"]["app"]["onionshare"]["requires"]))')
|
|
|
|
- run:
|
|
name: Run tests
|
|
command: |
|
|
cd ~/repo/desktop
|
|
xvfb-run ./tests/run.sh
|