This check is failing on the spelling of the valid function `assertIn` of the unittest library.
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
pylint:
|
|
name: "🐍 Lint"
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: registry.fedoraproject.org/fedora:36
|
|
steps:
|
|
|
|
- name: Install test dependencies
|
|
run: dnf -y install python3-boto3 python3-flexmock python3-httpretty python3-jsonschema python3-koji python3-pylint python3-requests
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Analysing the code with pylint
|
|
run: |
|
|
python3 -m pylint plugins/**/*.py test/**/*.py
|
|
|
|
unit:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Clone Repository"
|
|
uses: actions/checkout@v3
|
|
- name: "Run unit tests"
|
|
uses: osbuild/koji-osbuild/test@main
|
|
with:
|
|
run: |
|
|
pytest --cov-report=xml --cov=osbuild test/unit/
|
|
- name: Send coverage to codecov.io
|
|
run: bash <(curl -s https://codecov.io/bash)
|
|
|
|
shellcheck:
|
|
name: "Shellcheck"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Clone Repository"
|
|
uses: actions/checkout@v3
|
|
- name: "Run ShellCheck"
|
|
uses: ludeeus/action-shellcheck@2.0.0
|
|
with:
|
|
severity: warning
|