Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -18,7 +18,7 @@ jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
fail-fast: false
matrix:
include:
- name: Code style checks
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ test =
pytest
pytest-cov
cython
codecov
coverage

[options.package_data]
Expand Down