diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d48f4214..3c7883848 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -233,17 +233,17 @@ jobs: tox-env: py313-pip25_0 artifact-name: unit-tests cache: true - pex-test-pos-args: ${{ needs.setup.outputs.pex_test_posargs }} --junit-xml dist/reports/tests-unit.xml + pex-test-pos-args: ${{ needs.setup.outputs.pex_test_posargs }} --junit-xml ../dist/reports/tests-unit.xml - python-version: [ 3, 13 ] tox-env: py313-pip25_0-integration artifact-name: integration-tests-1 cache: true - pex-test-pos-args: --shard 1/2 ${{ needs.setup.outputs.pex_test_posargs }} --junit-xml dist/reports/tests-integration-1.xml + pex-test-pos-args: --shard 1/2 ${{ needs.setup.outputs.pex_test_posargs }} --junit-xml ../dist/reports/tests-integration-1.xml - python-version: [ 3, 13 ] tox-env: py313-pip25_0-integration artifact-name: integration-tests-2 cache: true - pex-test-pos-args: --shard 2/2 ${{ needs.setup.outputs.pex_test_posargs }} --junit-xml dist/reports/tests-integration-2.xml + pex-test-pos-args: --shard 2/2 ${{ needs.setup.outputs.pex_test_posargs }} --junit-xml ../dist/reports/tests-integration-2.xml steps: - name: Checkout Pex uses: actions/checkout@v4