diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index dc80933..c96f8c6 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8"] + python-version: ["3.8", "3.9", "3.10"] steps: - name: Set Swap Space uses: pierotofy/set-swap-space@master @@ -33,7 +33,7 @@ jobs: - name: Run pytest run: | - pytest -n 1 --cov --no-cov-on-fail --cov-report=term-missing:skip-covered --cov-report xml:coverage.xml + pytest -n auto --cov --no-cov-on-fail --cov-report=term-missing:skip-covered --cov-report xml:coverage.xml timeout-minutes: 300 # Set the timeout to 1.5 hours for this step - name: Upload coverage reports to Codecov