Skip to content

test hardening

test hardening #225

Workflow file for this run

name: Full Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install ffmpeg
python -m pip install --upgrade pip
pip install coverage
pip install -r requirements.txt
pip install -r requirements-optional.txt
- name: Test and Code coverage
run: |
ALLOW_CLOUD_SCRAPER_FAILURES=1 make full_test_coverage