Skip to content

Benchmark

Benchmark #178

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
PYTHONIOENCODING: "utf8"
jobs:
run:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-12]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Pytest
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
pip install pytest pytest-asyncio typing_extensions
else
pip install pytest pytest-asyncio pytest-memray typing_extensions
fi
shell: bash
- name: Build PyAwaitable
run: pip install .
- name: Build PyAwaitable Test Package
run: pip install setuptools wheel && pip install ./tests/extension/ --no-build-isolation
- name: Run tests
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
pytest -W error
else
python3 -m pytest -W error --memray
fi
shell: bash