-
Notifications
You must be signed in to change notification settings - Fork 35
64 lines (61 loc) · 1.79 KB
/
tests.yaml
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
name: wt.pf4 tests
on:
push:
branches:
- master
pull_request:
types: ["opened", "synchronize", "reopened"]
create:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
browser: [chrome, firefox]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip wheel
pip install .[dev]
- name: Fetch selenium image
run: podman pull selenium/standalone-${{ matrix.browser }}:4.9.0-20230421
- name: Test with pytest
env:
BROWSER: ${{ matrix.browser }}
run: |
pytest -v -n 5 --no-cov-on-fail \
--cov=widgetastic_patternfly4 \
--cov-append
mv .coverage ${{ strategy.job-index }}_coverage
- name: Upload coverage artifact
uses: "actions/upload-artifact@v3"
with:
name: ${{ strategy.job-index }}_coverage
path: ${{ strategy.job-index }}_coverage
submit_coverage:
runs-on: ubuntu-22.04
needs: test
steps:
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- uses: actions/checkout@v3
- name: Install coverage
run: pip install coverage
- name: Download coverage artifacts
uses: actions/download-artifact@v3
with:
path: /tmp/coverage
- name: Combine coverage data files
run: |
coverage combine -a $(find /tmp/coverage -type f)
coverage xml -o /tmp/coverage.xml
- name: Publish coverage
uses: codecov/codecov-action@v3
with:
files: /tmp/coverage.xml