Skip to content

Commit

Permalink
Add tests to github.
Browse files Browse the repository at this point in the history
  • Loading branch information
amanning9 committed Sep 10, 2024
1 parent 4ae6486 commit e3caad6
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
name: Tox

on:
pull_request:
push:
branches:
- "main"
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: python -m pip install 'tox>=4.0.16' 'tox-gh' 'urllib3<2'
- name: Install tox-docker
run: python -m pip install --pre tox-docker
- name: Run test suite
run: tox run
env:
PYTEST_ADDOPTS: "-vv --durations=10"

0 comments on commit e3caad6

Please sign in to comment.