mirror of https://github.com/ceph/ceph-ansible.git
29 lines
1.0 KiB
YAML
29 lines
1.0 KiB
YAML
name: pytest
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'library/**.py'
|
|
- 'module_utils/**.py'
|
|
- 'plugins/filter/**.py'
|
|
- 'tests/library/**.py'
|
|
- 'tests/module_utils/**.py'
|
|
- 'tests/plugins/filter/**.py'
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.6, 3.7, 3.8]
|
|
name: Python ${{ matrix.python-version }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
architecture: x64
|
|
- run: pip install -r tests/requirements.txt
|
|
- run: pytest --cov=library/ --cov=module_utils/ --cov=plugins/filter/ -vvvv tests/library/ tests/module_utils/ tests/plugins/filter/
|
|
env:
|
|
PYTHONPATH: "$PYTHONPATH:/home/runner/work/ceph-ansible/ceph-ansible/library:/home/runner/work/ceph-ansible/ceph-ansible/module_utils:/home/runner/work/ceph-ansible/ceph-ansible/plugins/filter:/home/runner/work/ceph-ansible/ceph-ansible"
|