Skip to content

Update tests-python.yml #29 #45

Update tests-python.yml #29

Update tests-python.yml #29 #45

Workflow file for this run

name: Execute Geppetto Tests
on:
push:
branches:
- main
- develop
jobs:
Test-Python3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run Python
run: python --version
- name: install requirements
run: |
pip install -r requirements.txt
- name: Run Test
run: |
python -m unittest discover tests -v
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: JEST Tests # Name of the check run which will be created
path: reports/jest-*.xml # Path to test results
reporter: jest-junit # Format of test results