Skip to content

Keep names of all products + new BinaryProduct #569

Keep names of all products + new BinaryProduct

Keep names of all products + new BinaryProduct #569

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Live API tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "*" ]
types:
- labeled
- opened
- synchronize
- reopened
jobs:
build:
if: contains( github.event.pull_request.labels.*.name, 'test-live')
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest wheel coverage pylint mypy
python -m pip install types-simplejson types-requests types-click
python -m pip install oda-knowledge-base[rdf,cwl] papermill ipykernel
python -m pip install -r doc/requirements.txt
python -m ipykernel install --prefix $HOME/.local/share/jupyter/kernels --name python3
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
python -m coverage run -m pytest tests --run-only-live
- name: Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true