Skip to content

test(RHTAPWATCH-643): Adding python tests to CI #1

test(RHTAPWATCH-643): Adding python tests to CI

test(RHTAPWATCH-643): Adding python tests to CI #1

Workflow file for this run

name: Run tests
on:
pull_request:
branches: [main]
jobs:
test:
permissions:
checks: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install pipenv
run: pip install pipenv==2023.7.23
- name: Create virtualenv
run: pipenv sync
- name: Run tests
run: |
pipenv run pytest tests