Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 2 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ on:
schedule:
# run this every Wednesday at 3 am UTC
- cron: 0 3 * * 3
workflow_dispatch:

jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand Down Expand Up @@ -66,29 +68,6 @@ jobs:
name: test_results
path: test_results/

minimal-dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Build library
run: |
python -m pip install --upgrade pip
python -m pip install tomli tomli_w
python scripts/hardpin_minimal_dependencies.py
python -m pip install .
python -m pip install --requirement requirements/tests.txt

- name: Run test suite
run: |
python -m pip freeze
pytest --color yes


image-tests:
name: Image tests
runs-on: ubuntu-latest
Expand Down