From 15e9f1868c2f77e1cdd8311f7de185e6a0a129d2 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 21 Jun 2023 00:30:10 +0200 Subject: [PATCH] main.yml: Run online tests only once Online tests are tests that need access to the Internet to pass (and hence have @pytest.marker.online decoration). --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78290da..b89b4b0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,8 +28,8 @@ jobs: pip install --upgrade pip pip install codecov tox tox-gh-actions - - name: Run tests with tox - run: tox + - name: Run online tests with tox + run: tox -- -m online - name: Run offline tests with tox with no access to the Internet run: |