Files
wlan-testing/.github/workflows/update-badges.yml
Anil Kumar Tegala 09e893f49b updated testcase markers with latest names (#754)
* updated testcase markers with latest names

Signed-off-by: anil-tegala <anil.tegala@candelatech.com>

* Fix: delete unrequired double quotes

Signed-off-by: Dmitry Dunaev <dmitry@opsfleet.com>

Signed-off-by: anil-tegala <anil.tegala@candelatech.com>
Signed-off-by: Dmitry Dunaev <dmitry@opsfleet.com>
Co-authored-by: Dmitry Dunaev <dmitry@opsfleet.com>
2022-12-21 14:47:25 +03:00

64 lines
2.8 KiB
YAML

name: Update test number badges
on:
push:
branches:
- master
paths:
- "tests/**"
workflow_dispatch:
jobs:
update_badges:
runs-on: ubuntu-latest
container: python:3.8
steps:
- name: Checkout testing repo
uses: actions/checkout@v3
with:
path: wlan-testing
- uses: actions/checkout@v3
with:
ref: badges
path: wlan-testing/badges
- name: Run setup_env.bash
working-directory: wlan-testing
env:
CLOUDSDK_LIBRARY: tip_2x
TEST_DEVICE_NAME: all
PYTHON: /usr/local/bin/python3
PIP: /usr/local/bin/pip3
run: |
./setup_env.bash -t $CLOUDSDK_LIBRARY -d $TEST_DEVICE_NAME -n "TIP Automation" -o TIP -e tip-automation@telecominfraproject.com -i "TIP OpenWIFI Library" && pip3 freeze
- name: download badges
working-directory: wlan-testing/tests
run: |
mkdir -p ../.img
wget https://img.shields.io/badge/total_tests-$(pytest --collect-only -q | tail -1 | cut -d ' ' -f 1)-green?style=flat-square -O ../badges/total-count.svg
wget https://img.shields.io/badge/interop_tests-$(pytest --collect-only -m "ow_sanity_interop" -q | tail -1 | cut -d '/' -f 1)-green?style=flat-square -O ../badges/interop-count.svg
wget https://img.shields.io/badge/sanity_tests-$(pytest --collect-only -m "ow_sanity_lf" -q | tail -1 | cut -d '/' -f 1)-green?style=flat-square -O ../badges/sanity-count.svg
wget https://img.shields.io/badge/performance_tests-$(pytest --collect-only -m "performance" -q | tail -1 | cut -d '/' -f 1)-green?style=flat-square -O ../badges/performance-count.svg
wget https://img.shields.io/badge/advance_tests-$(pytest --collect-only -m "advance" -q | tail -1 | cut -d '/' -f 1)-green?style=flat-square -O ../badges/advance-count.svg
wget https://img.shields.io/badge/regression_tests-$(pytest --collect-only -m "ow_regression_lf" -q | tail -1 | cut -d '/' -f 1)-green?style=flat-square -O ../badges/regression-count.svg
# wget https://img.shields.io/badge/interop_performance_tests-$(pytest --collect-only -m "interop_uc_sanity and client_connectivity" -q | tail -1 | cut -d '/' -f 1)-green?style=flat-square -O ../badges/performance-interop-count.svg
- name: commit changes
working-directory: wlan-testing/badges
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git diff-index --quiet HEAD || git commit -m "Updating test count badges: $(date -u)"
- name: push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
directory: wlan-testing/badges
branch: badges
force: true