This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
78 lines (64 loc) · 1.88 KB
/
test-suite.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
name: Test Suite
on:
pull_request:
branches: [master]
push:
jobs:
smoke-tests:
name: ${{ matrix.os }} - ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
env:
POETRY_VIRTUALENVS_CREATE: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get full python version
id: full-python-version
shell: bash
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install poetry
shell: bash
run: python -m pip install poetry
- name: Install
run: poetry install
- name: Run pytest
shell: bash
run: |
python -m pytest -m "not slow"
full-tests:
name: Full Test - Python 3.9
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
PYTEST_ADDOPTS: "--color=yes"
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Get full python version
id: full-python-version
shell: bash
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install poetry
shell: bash
run: python -m pip install poetry
- name: Install
run: poetry install
- name: Run pytest
shell: bash
run: |
python -m pytest
- uses: codecov/codecov-action@v1
if: always()
with:
file: ./.coverage/coverage.xml