3131 steps :
3232 - uses : actions/checkout@v6
3333 - name : Set up Pipenv on python ${{ matrix.python-version }}
34- uses : fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.4
34+ uses : fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.7
3535 with :
3636 python-version : ${{ matrix.python-version }}
3737 allow-prereleases : true
@@ -58,25 +58,25 @@ jobs:
5858 }
5959 - name : Run test
6060 id : run_serial_tests
61- uses : fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.4
61+ uses : fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.7
6262 with :
6363 command : python -m coverage run --data-file=.coverage.serial -m pytest -svv -p no:xdist --postgresql-exec="${{ env.POSTGRESQL_EXEC }}" -k "not docker" --basetemp="${{ runner.temp }}/pytest-basetemp"
6464 env : ' {"COVERAGE_PROCESS_START": ".coveragerc", "COVERAGE_FILE": ".coverage.serial"}'
6565 - name : Combine and export serial coverage
6666 if : ${{ always() && (steps.run_serial_tests.conclusion == 'success' || steps.run_serial_tests.conclusion == 'failure') }}
67- uses : fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.4
67+ uses : fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.7
6868 with :
6969 data-file : .coverage.serial
7070 output-file : coverage-serial.xml
7171 - name : Run xdist test
7272 id : run_xdist_tests
73- uses : fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.4
73+ uses : fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.7
7474 with :
7575 command : python -m coverage run --data-file=.coverage.xdist -m pytest -n auto --dist loadgroup --max-worker-restart 0 --postgresql-exec="${{ env.POSTGRESQL_EXEC }}" -k "not docker" --basetemp="${{ runner.temp }}/pytest-basetemp"
7676 env : ' {"COVERAGE_PROCESS_START": ".coveragerc", "COVERAGE_FILE": ".coverage.xdist"}'
7777 - name : Combine and export xdist coverage
7878 if : ${{ always() && (steps.run_xdist_tests.conclusion == 'success' || steps.run_xdist_tests.conclusion == 'failure') }}
79- uses : fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.4
79+ uses : fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.7
8080 with :
8181 data-file : .coverage.xdist
8282 output-file : coverage-xdist.xml
0 commit comments