Skip to content

bump test python versions #19

bump test python versions

bump test python versions #19

Workflow file for this run

name: pytest
on: [push, pull_request]
permissions:
contents: read
jobs:
run-tests:
name: Run tests (${{ matrix.python-version }})
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Run pytest
run: |
pytest
env:
FTRACK_SERVER: ${{ secrets.FTRACK_SERVER }}
FTRACK_API_USER: ${{ secrets.FTRACK_API_USER }}
FTRACK_API_KEY: ${{ secrets.FTRACK_API_KEY }}