Skip to content

Extend user_may_apply slightly. #417

Extend user_may_apply slightly.

Extend user_may_apply slightly. #417

Workflow file for this run

---
name: Tox
on:
pull_request:
push:
branches:
- "master"
tags:
- "v*"
jobs:
test:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- Ubuntu
py:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.4.2
- name: Install test dependencies.
run: pip install tox>=4.0.16 tox-gh
- name: Setup test suite
run: tox r -vv --notest
- name: Run test suite
run: tox r --skip-pkg-install
env:
PYTEST_ADDOPTS: "-vv --durations=10"