From 9bcd9f0d9290722787b35cb4cca16ad3d201815e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Mon, 5 Aug 2024 18:11:16 +0100 Subject: [PATCH] chore: new pytest version --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d18ecba4..1190e495 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,11 @@ jobs: pip install black black . --check if: matrix.python-version == '3.12' + - run: | + pip install pytest + HTTPBIN=httpbin.bemisc.com pytest - run: HTTPBIN=httpbin.bemisc.com python setup.py test + if: matrix.python-version != '3.12' && matrix.python-version != 'latest' build-pypy: name: Build PyPy timeout-minutes: 10 @@ -46,4 +50,8 @@ jobs: pip install black black . --check if: matrix.python-version == '3.12' + - run: | + pip install pytest + HTTPBIN=httpbin.bemisc.com pytest - run: HTTPBIN=httpbin.bemisc.com pypy setup.py test + if: matrix.python-version != '3.12' && matrix.python-version != 'latest'