Skip to content

flip get_formation to return right, left instead of left, right for … #1586

flip get_formation to return right, left instead of left, right for …

flip get_formation to return right, left instead of left, right for … #1586

Workflow file for this run

name: Continuous Integration
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.8.3
with:
run-install: false
- name: Run tests
run: |
if [[ $GITHUB_EVENT_NAME == "push" ]]; then
pixi run -- pytest utama_core/tests/ --level full --ignore-glob "**/*grsim*" --headless --junit-xml=test-results.xml
elif [[ $GITHUB_EVENT_NAME == "pull_request" ]]; then
pixi run -- pytest utama_core/tests/ --level quick --ignore-glob "**/*grsim*" --headless --junit-xml=test-results.xml
fi
- name: Test Report
if: always()
uses: pmeier/pytest-results-action@main
with:
path: test-results.xml
summary: true
display-options: fEX
fail-on-empty: true
title: RSoccer CI Test Results