Skip to content

Adds pytest_markdown_docs_markdown_it for custom markdownit parser (#47) #104

Adds pytest_markdown_docs_markdown_it for custom markdownit parser (#47)

Adds pytest_markdown_docs_markdown_it for custom markdownit parser (#47) #104

Workflow file for this run

name: Test
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install uv
uses: astral-sh/setup-uv@caf0cab7a618c569241d31dcd442f54681755d39 # v3
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests with pytest
run: uv run pytest
- name: Downgrade to pytest 7
run: uv pip install "pytest<8"
- name: Run tests with pytest 7
run: uv run pytest