Seamless integration of tox into GitHub Actions
Project description
tox-gh
tox-gh is a tox plugin which helps running tox on GitHub Actions with multiple different Python versions on multiple workers in parallel.
Features
When running tox on GitHub Actions, tox-gh
- detects which environment to run based on configurations and
- provides utilities such as grouping log lines.
Usage
- Add configurations under
[gh]
section along with your tox configuration. - Install
tox-gh
package in the GitHub Actions workflow before runningtox
command.
Examples
Basic Example
Add [gh]
section to the same file as tox configuration. If you're using tox.ini
:
[gh]
python =
3.6 = py36
3.7 = py37
3.8 = py38
3.9 = py39, type
This will run different set of tox environments on different python versions set up via GitHub setup-python
action:
- on Python 3.6 job, tox runs
py36
environment, - on Python 3.7 job, tox runs
py37
environment, - on Python 3.8 job, tox runs
py38
environment, - in Python 3.9 job, tox runs
py39
andtype
environments.
Workflow Configuration
.github/workflows/check.yml
:
name: check
on:
push:
pull_request:
schedule:
- cron: "0 8 * * *"
jobs:
test:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- Ubuntu
- Windows
- MacOs
py:
- "3.10.0-rc.1"
- "3.9"
- "3.8"
- "3.7"
- "3.6"
steps:
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py }}
- uses: actions/checkout@v2
- name: Install tox-gh
run: python -m pip install tox-gh
- name: Setup test suite
run: tox4 r -vv --notest
- name: Run test suite
run: tox4 r --skip-pkg-install
env:
PYTEST_ADDOPTS: "-vv --durations=10"
FAQ
- When a list of environments to run is specified explicitly via
-e
option orTOXENV
environment variabletox-gh
respects the given environments and simply runs the given environments without enforcing its configuration. - The plugin only activates if the environment variable
GITHUB_ACTIONS
istrue
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tox_gh-0.0.4.tar.gz
(8.8 kB
view hashes)
Built Distribution
tox_gh-0.0.4-py3-none-any.whl
(5.9 kB
view hashes)