Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Pytest slow nightly #194

Pytest slow nightly

Pytest slow nightly #194

name: Pytest slow nightly
on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
jobs:
pytest-slow:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
cache-dependency-path: requirements.txt
- name: Install dependencies within the environment
run: pip install -r requirements.txt
- name: pytest
run: |
python -m pytest -s -vv -m "slow" .
timeout-minutes: 30