From 9b541961b5ac2bc87d8449a0448f121ea3a8b55e Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 11 Jan 2021 13:01:50 +0100 Subject: [PATCH] gci: Re-enable DEVELOPER=0 builds --- .ci/test.py | 1 - .github/workflows/main.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.ci/test.py b/.ci/test.py index d1ab91d..4a18add 100644 --- a/.ci/test.py +++ b/.ci/test.py @@ -116,7 +116,6 @@ def run_one(p: Plugin) -> bool: pytest_path, p.path, '-vvv', - '-n 5', '--timeout=300', '--junitxml=report-{}.xml'.format(p.name), '--reruns=2', diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 82056ee..cf43bd6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: python-version: [3.6, 3.7, 3.8] - developer: [1] + developer: [0,1] steps: - uses: actions/checkout@v2