Skip to content

Extend tests

Extend tests #69

Workflow file for this run

---
# yamllint disable rule:line-length
name: "Test Suite"
"on":
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
pytest:
name: Pytest
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: prepare environment
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update -qq --yes
sudo apt-get install python3-pip --yes
sudo sh helper/install_deps.sh
pip install -r ./tests/requirements.txt
service privoxy stop || true
- name: run pytest
run: pytest -v -s --color yes tests/