-
Notifications
You must be signed in to change notification settings - Fork 9
49 lines (42 loc) · 1.15 KB
/
python-app.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: TestAll
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
name: "test ${{ matrix.py }} - ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os:
# - ubuntu-latest
- ubuntu-20.04
# - windows
# - MacOs
py:
- "3.11"
- "3.10"
# - "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@v3
- run: python -m pip install tox tox-gh
- name: Setup test suite
run: python -m tox run
- name: Run test suite
run: python -m tox run --skip-pkg-install
env:
PYTEST_ADDOPTS: "--durations=20"