test: add integration tests for the grade api AP-1406
#761
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 suite workflow | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
Running-test: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 2 | |
matrix: | |
python-version: ["3.8", "3.11"] | |
django: ["42"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache dependency | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/test.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dev Requirements | |
run: | | |
make install-dev-dependencies | |
- name: Run Python Tests | |
run: | | |
export TOXENV=${TOX_ENV//./} | |
make run-tests | |
env: | |
TOX_ENV: py${{matrix.python-version}}-django${{matrix.django}} |