This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
Fix tests for codecov. #9
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
codecov: | |
name: Code coverage on codecov | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install requirements | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
cache-environment-key: pylatest-ubuntu-latest-mamba-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }} | |
cache-downloads: false | |
- name: Python version | |
run: python --version | |
- name: Test for Coverage | |
# xvfb for graphical interface | |
run: xvfb-run -a pytest --cov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./coverage/reports/ | |
# env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
files: ./coverage.xml,!./cache | |
flags: unittests | |
name: codecov-umbrella | |
verbose: true |