From 23c82df20b658a51baaa3ff194cab493cb732c08 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Wed, 22 May 2024 07:56:19 +0100 Subject: [PATCH] SKIP_PING_TESTS --- .github/workflows/python_checks.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/python_checks.yml b/.github/workflows/python_checks.yml index 42634ef..70acd99 100644 --- a/.github/workflows/python_checks.yml +++ b/.github/workflows/python_checks.yml @@ -42,6 +42,7 @@ on: jobs: validate: + # Everything as checks but do validation steps first strategy: matrix: include: @@ -115,11 +116,16 @@ jobs: coverage: ${{ matrix.coverage == 'coverage' }} cover-packages: ${{ inputs.base-package }} coveralls-token: ${{ secrets.GITHUB_TOKEN }} + env: + # Tests using ping won't work in Github Actions because of system config + SKIP_PING_TESTS: true checks: + # Everything as tests but do validation steps first strategy: matrix: include: + # prereleases - runner: ubuntu-24.04 python-version: "3.13" @@ -191,6 +197,9 @@ jobs: coverage: ${{ matrix.coverage == 'coverage' }} cover-packages: ${{ inputs.base-package }} coveralls-token: ${{ secrets.GITHUB_TOKEN }} + env: + # Tests using ping won't work in Github Actions because of system config + SKIP_PING_TESTS: true tests: strategy: @@ -243,4 +252,6 @@ jobs: env: SPALLOC_USER: ${{ secrets.SPALLOC_USER }} SPALLOC_PASSWORD: ${{ secrets.SPALLOC_PASSWORD }} + # Tests using ping won't work in Github Actions because of system config + SKIP_PING_TESTS: true run: pytest ${{ inputs.test_directories }}