This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
Merge pull request #152 from communitiesuk/smd-698-remove-create-account #724
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: Run tests | |
on: [push] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: pip # caching pip dependencies | |
- name: Install dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Run tests | |
env: | |
FLASK_ENV: unit_test | |
run: python -m pytest |