summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@users.noreply.github.com>2021-10-24 20:38:48 +0200
committerGitHub <noreply@github.com>2021-10-24 20:38:48 +0200
commit5fefeb8b95f10b3926fb43f81e8bc3e3693b6335 (patch)
tree15f12136e6670d89156240bbf028622e94a6e394
parent73a5a6817dd86ceef71bb951fbe9cbad01443a12 (diff)
downloadkombu-5fefeb8b95f10b3926fb43f81e8bc3e3693b6335.tar.gz
Dont failfast when pypy3 tests fail (#1408)
-rw-r--r--.github/workflows/ci.yaml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 2aba3df9..64bc9dee 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -25,9 +25,15 @@ jobs:
integration:
needs: [unittest]
runs-on: ubuntu-latest
+ continue-on-error: ${{ matrix.experimental }}
strategy:
+ fail-fast: false
matrix:
- python-version: [3.7,3.8,3.9,pypy3]
+ python-version: [3.7,3.8,3.9]
+ experimental: [false]
+ include:
+ - python-version: pypy3
+ experimental: true
steps:
- name: Install system packages
run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev