Skip to content

Concurrent load automation #7

Concurrent load automation

Concurrent load automation #7

Workflow file for this run

---
name: Unit Tests
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest ansible
- name: Run unit tests
run: |
cd automation/test-execution/ansible/tests
python -m pytest test_cpu_utils.py -v
- name: Test results summary
if: always()
run: |
echo "Unit test execution completed"