diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index ad69913..d1b446d 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -7,8 +7,8 @@ on: tags: '*' workflow_dispatch: schedule: - # Monthly cron - - cron: '0 8 1 * *' + # Weekly cron + - cron: '0 8 * * 1' concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -18,7 +18,7 @@ jobs: tests: runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: include: - name: Code style checks @@ -100,9 +100,6 @@ jobs: run: choco install graphviz - name: Install tox run: python -m pip install tox - - name: Install codecov - if: ${{ contains(matrix.toxenv,'-cov') }} - run: python -m pip install codecov - name: Run tox run: tox ${{ matrix.toxargs }} -v -e ${{ matrix.toxenv }} - name: Upload coverage to codecov diff --git a/setup.cfg b/setup.cfg index bcc51c5..db8e168 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,7 +27,6 @@ test = pytest pytest-cov cython - codecov coverage [options.package_data]