From a24015fc02cc44ed44a381b72edcf5413e44d645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jim=20Br=C3=A4nnlund?= Date: Mon, 17 Jan 2022 10:37:59 +0100 Subject: [PATCH 1/2] Disable Codecov --- .github/workflows/actions.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 74b4257e..0903178b 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -13,7 +13,7 @@ on: ** pull_request: schedule: - - cron: 1 0 * * * # Run daily at 0:01 UTC + - cron: '1 0 * * *' # Run daily at 0:01 UTC jobs: build_docs: @@ -122,14 +122,15 @@ jobs: - name: Test with tox run: | python -m tox -e ${{ steps.split-matrix-name.outputs._0}}-cov - - name: Upload coverage to codecov - uses: codecov/codecov-action@v1 - with: - fail_ci_if_error: true - file: ./coverage.xml - flags: tests - name: ${{ matrix.py }} - ${{ matrix.os }} - verbose: true +# - name: Upload coverage to codecov +# if: github.event.schedule == '' +# uses: codecov/codecov-action@v2 +# with: +# fail_ci_if_error: true +# file: ./coverage.xml +# flags: tests +# name: ${{ matrix.py }} - ${{ matrix.os }} +# verbose: true build_javascript: name: grunt runs-on: ubuntu-18.04 From 740c9738507603fd59f16d13c6fd3cd6bf05b6b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jim=20Br=C3=A4nnlund?= Date: Mon, 17 Jan 2022 10:52:27 +0100 Subject: [PATCH 2/2] Disable pypy3 on mac --- .github/workflows/actions.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 0903178b..694076a8 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -93,9 +93,10 @@ jobs: name: pypy3-windows python-version: pypy3 - - os: macOS-latest - name: pypy3-mac - python-version: pypy3 + # https://github.com/pytest-dev/pytest-html/issues/482 +# - os: macOS-latest +# name: pypy3-mac +# python-version: pypy3 - os: ubuntu-18.04 name: devel-ubuntu @@ -122,6 +123,7 @@ jobs: - name: Test with tox run: | python -m tox -e ${{ steps.split-matrix-name.outputs._0}}-cov + # TODO: https://github.com/pytest-dev/pytest-html/issues/481 # - name: Upload coverage to codecov # if: github.event.schedule == '' # uses: codecov/codecov-action@v2