Skip to content

Bump anytree from 2.8.0 to 2.9.2 in /server #880

Bump anytree from 2.8.0 to 2.9.2 in /server

Bump anytree from 2.8.0 to 2.9.2 in /server #880

Workflow file for this run

name: Python Unit Tests
on: [push, pull_request]
permissions:
checks: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run tests
run: |
python -m pytest --junitxml=junit/test-results.xml
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
junit_files: '**/server/junit/*.xml'