Skip to content

Feature: Refactor tests and mock data to use internal web pages #2158

Feature: Refactor tests and mock data to use internal web pages

Feature: Refactor tests and mock data to use internal web pages #2158

Workflow file for this run

name: Test
on:
pull_request:
branches:
- "**"
push:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run tests with Tox
run: tox