mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-08 03:18:28 +03:00
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
name: Download Tests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '35 14 * * 1'
|
|
pull_request:
|
|
branches: [ main ]
|
|
paths:
|
|
- src/**
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.10"] # only run expensive downloads on one (lowest) python version
|
|
defaults:
|
|
run:
|
|
working-directory: ./
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Cache Poetry and pip artifacts
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cache/pypoetry
|
|
~/.cache/pip
|
|
key: poetry-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
|
|
|
|
- name: Install dependencies from source only
|
|
run: poetry install --no-interaction --with dev
|
|
env:
|
|
PIP_NO_BINARY: ":all:"
|
|
|
|
- name: Run Download Tests
|
|
run: poetry run pytest -ra -v -x -m "download"
|
|
env:
|
|
TWITTER_BEARER_TOKEN: ${{ secrets.TWITTER_BEARER_TOKEN }}
|