Skip to content

Merge branch 'stable' into master #1868

Merge branch 'stable' into master

Merge branch 'stable' into master #1868

Workflow file for this run

name: tests
on: [pull_request, push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[test]
- name: Run Tests
run: python3 -m pytest -n auto --cov=asf_search --cov-report=xml --dont-run-file test_known_bugs .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
files: ./coverage.xml
flags: unittests
name: asf_admin pytest
verbose: true