All methods return a request Response #4
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: automated-tests | |
on: | |
pull_request: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install pip -U; python -m pip install poetry; poetry install | |
- name: Run tests | |
run: | | |
poetry run pytest -svx | |
poetry run coverage run --source kafka_schema_registry_admin -m pytest --verbose | |
poetry run coverage report -m |