[1.24] fix: Add python-requests to the list of required RPMs #520
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: pytest | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pytest: | |
name: "pytest" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: "CentOS 7" | |
image: "quay.io/centos/centos:centos7" | |
pytest_args: '' | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.image }} | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
- name: "Run container-pre-test.sh" | |
run: | | |
bash scripts/container-pre-test.sh | |
- name: "Run nosetest" | |
run: | | |
nosetests -v -c playpen/noserc.ci |