Skip to content

Fix format in docstring #1014

Fix format in docstring

Fix format in docstring #1014

Workflow file for this run

name: Tests
on: [push]
jobs:
build_wheels:
name: Build and test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["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 Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Build
run: pip install -e .[test]
- name: Test
run: python -m pytest -m "not heavy" -m "network or not network"