Patch numpy ComplexWarning (#443) #797
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
# Runs all tests and pushes coverage report to codeclimate | |
name: Coverage | |
on: # Runs on all push events to master branch and any push related to a pull request | |
push: | |
branches: | |
- master | |
pull_request: # so that codeclimate gets coverage and reports on the diff | |
jobs: | |
coverage: | |
uses: pylhc/.github/.github/workflows/coverage.yml@master | |
with: | |
src-dir: omc3 | |
pytest-options: -m "not cern_network" | |
secrets: inherit |