Skip to content

Slow test (master)

Slow test (master) #37

name: Slow test (master)
on:
schedule:
- cron: '0 1 * * 0'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "master"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install pip setuptools wheel
pip install pytest
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest --runslow --disable-warnings
#- name: Coverage report
# run: |
# coverage html