Skip to content

Test the production API #578

Test the production API

Test the production API #578

Workflow file for this run

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