Skip to content

Add minimum_valid_iat_time to subscriber table, and hook up the rest of the fxa webhook events 🛢 #80

Add minimum_valid_iat_time to subscriber table, and hook up the rest of the fxa webhook events 🛢

Add minimum_valid_iat_time to subscriber table, and hook up the rest of the fxa webhook events 🛢 #80

Workflow file for this run

# This workflow will install backend's requirements and run tests
name: Run Backend Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
cd ./backend
python -m pip install --upgrade pip
python -m pip install .'[test]'
- name: Test with pytest
run: |
cd ./backend && python -m pytest