Skip to content

[Enhancement] ✨ Add retry mechanism if all students are not allocated #6

[Enhancement] ✨ Add retry mechanism if all students are not allocated

[Enhancement] ✨ Add retry mechanism if all students are not allocated #6

Workflow file for this run

name: "Code Coverage"
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run pytest with coverage
run: |
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true