-
Notifications
You must be signed in to change notification settings - Fork 68
41 lines (39 loc) · 1.13 KB
/
gh-tests-ci.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
name: Unittest pipeline
on:
workflow_dispatch:
push:
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: [3.6, 3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest-cov
python -m pip install -U -e .[dev]
- name: Test with pytest
run: |
pytest --cache-clear --cov=./azure --cov-report=xml --cov-branch tests
- if: matrix.python_version != 3.6
name: Test with pytest and ujson
run: |
python -m pip install .[ujson]
pytest --cache-clear --cov=./azure --cov-report=xml --cov-branch --cov-append tests
- if: matrix.python_version == 3.9
name: Codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
flags: unittests
name: codecov
fail_ci_if_error: false