Skip to content

chore(deps): bump requests from 2.31.0 to 2.32.2 in /docs #121

chore(deps): bump requests from 2.31.0 to 2.32.2 in /docs

chore(deps): bump requests from 2.31.0 to 2.32.2 in /docs #121

Workflow file for this run

name: Python Tests
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
working-directory: src/python
run: pip install .[dev]
- name: Run tests
working-directory: src/python
run: pytest pose_format
- name: Run additional tests
working-directory: src/python
run: pytest tests