Skip to content

[WIP] Try to get tests running again #52

[WIP] Try to get tests running again

[WIP] Try to get tests running again #52

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
name: [
"py-djangolts",
"py-djangocurr",
"py-quality",
"py310",
"py311",
"py312",
"py313",
"py314",
]
include:
- name: py-djangolts
python-version: 3.14
toxenv: py314-djangolts
- name: py-djangocurr
python-version: 3.14
toxenv: py314-djangocurr
- name: py-quality
python-version: 3.14
toxenv: py314-quality
- name: py310
python-version: "3.10"
toxenv: py310
- name: py311
python-version: "3.11"
toxenv: py311
- name: py312
python-version: "3.12"
toxenv: py312
- name: py313
python-version: "3.13"
toxenv: py313
- name: py314
python-version: "3.14"
toxenv: py314
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Before Install
run: |
python --version
uname -a
lsb_release -a
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Install
env:
TOXENV: ${{ matrix.toxenv }}
run: |
pip install tox-gh-actions codecov coveralls
pip --version
tox --version
- name: Script
run: |
tox -v
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- name: After Failure
if: ${{ failure() }}
run: |
more .tox/log/* | cat
more .tox/*/log/* | cat