Test the production API #503
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test the production API | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '00 01 * * *' | |
# Everyday at 01:00am GMT+1 | |
# push: | |
# branches: [ master, develop ] | |
# paths: | |
# - '.github/workflows/test-prod.yml' | |
jobs: | |
tests-production: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install ".[test,test-prod]" | |
- name: Test with pytest | |
run: | | |
pytest tests/production -s |