forked from erikrose/blessings
-
Notifications
You must be signed in to change notification settings - Fork 72
93 lines (72 loc) · 2.49 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Tests
on:
push:
pull_request:
release:
schedule:
# Every Thursday at 1 AM
- cron: '0 1 * * 4'
jobs:
Tests:
continue-on-error: ${{ matrix.optional || false }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
container: ${{ matrix.container }}
name: ${{ matrix.label || matrix.python-version }} ${{ startsWith(matrix.os, 'windows') && '(Windows)' || '' }} ${{ matrix.optional && '[OPTIONAL]' }}
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
test_quick: [1]
include:
- python-version: '3.12'
label: Linting
toxenv: docformatter_check,flake8,flake8_tests,isort_check,mypy,sphinx,pydocstyle,pylint,pylint_tests
- python-version: '3.13-dev'
optional: true
toxenv: py313
toxpython: 3.13
- python-version: '3.12'
test_keyboard: 1
test_raw: 1
test_quick: 0
- python-version: '3.12'
os: windows-latest
test_quick: 0
- python-version: '3.6'
os: ubuntu-20.04
toxenv: py36
- python-version: '3.5'
os: ubuntu-20.04
toxenv: py35
- python-version: '2.7'
container: {image: 'python:2.7.18-buster'}
toxenv: py27
test_keyboard: 1
test_raw: 1
test_quick: 0
env:
TOXENV: ${{ matrix.toxenv || format('py{0}', matrix.python-version) }}
TEST_QUICK: ${{ matrix.test_quick || 0 }}
TEST_KEYBOARD: ${{ matrix.test_keyboard || 0 }}
TEST_RAW: ${{ matrix.test_raw || 0 }}
TOXPYTHON: python${{ matrix.toxpython || matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
if: ${{ matrix.python-version != '2.7' }}
- name: Install tox
run: pip install tox
- name: Collect terminal information
run: tox -e about
- name: Run tox
run: tox
- name: Upload to Codecov
if: ${{ matrix.label != 'linting' }}
uses: codecov/codecov-action@v3
with:
verbose: true
name: ${{ matrix.label || matrix.python-version }} ${{ startsWith(matrix.os, 'windows') && '(Windows)' || '' }}
env_vars: TOXENV,TEST_QUICK,TEST_KEYBOARD,TEST_RAW