Enable warnings as errors for weekly run in test suite #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test-suite with Python warnings as errors | |
on: | |
# Scheduled trigger every Sunday at 2:35am UTC | |
schedule: | |
- cron: '35 2 * * 0' | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
group: warnings-as-errors-tests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-warnings-as-errors: | |
strategy: | |
fail-fast: false | |
max-parallel: 1 | |
secrets: | |
codecov_token: ${{ secrets.CODECOV_TOKEN }} | |
uses: ./.github/workflows/interface-unit-tests.yml | |
with: | |
branch: ${{ github.ref }} | |
skip_ci_test_jobs: 'qcut-tests' | |
python_warning_level: 'error' | |
pipeline_mode: 'warnings' |