dda-python-terraform/.github/workflows/pytest.yml
Kiran Kumar Kotari 2f816a8712
Update pytest.yml
Adding workflow_dispatch and removed code coverage, for initial test action setup.
2022-05-26 04:12:47 -04:00

35 lines
870 B
YAML

name: "pytest:py3 "
on:
push:
branches:
- '**'
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel flake8 pytest pytest-cov
pip install -r requirements.txt
- name: Test with pytest
run: |
PYTHONPATH=. python -m pytest -v -s --cache-clear --cov=python-terraform tests