-
Notifications
You must be signed in to change notification settings - Fork 29
116 lines (95 loc) · 2.98 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Widgetastic.patternfly Test suite
on:
push:
branches:
- master
pull_request:
types: ["opened", "synchronize", "reopened"]
jobs:
codechecks:
name: Code quality [pre-commit]
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
architecture: "x64"
- name: Pre Commit Checks
uses: pre-commit/action@v2.0.0
- name: Analysis (git diff)
if: failure()
run: git diff
unit-tests:
# Run unit tests on different version of python and browser
name: Python-${{ matrix.python-version }}-${{ matrix.browser }}
runs-on: ubuntu-20.04
needs: [codechecks]
strategy:
matrix:
browser: [chrome, firefox]
python-version: [3.8, 3.9]
steps:
- name: Pull selenium-standalone:latest
run: podman pull quay.io/redhatqe/selenium-standalone:latest
- name: Pull docker.io/library/nginx:alpine
run: podman pull docker.io/library/nginx:alpine
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python-${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: UnitTest - Python-${{ matrix.python-version }}-${{ matrix.browser }}
env:
BROWSER: ${{ matrix.browser }}
XDG_RUNTIME_DIR: ${{ github.workspace }}
run: |
pip install -U setuptools wheel
pip install -e .[test]
mkdir -p ${XDG_RUNTIME_DIR}/podman
podman system service --time=0 unix://${XDG_RUNTIME_DIR}/podman/podman.sock &
pytest -v --cov widgetastic_patternfly --cov-report term-missing --alluredir allure/
docs:
name: Docs Build
needs: [unit-tests]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install Deps
run: |
pip install -U pip setuptools wheel
pip install .[docs]
- name: Build Docs
run: sphinx-build -b html -d build/sphinx-doctrees docs build/htmldocs
- name: Archive Docs
uses: actions/upload-artifact@v2
with:
name: sphinx-htmldocs
path: build/htmldocs
package:
name: Build & Verify Package
needs: [unit-tests]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
architecture: "x64"
- name: Build and verify with twine
run: |
python -m pip install pip --upgrade
pip install twine setuptools wheel --upgrade
python setup.py sdist bdist_wheel
ls -l dist
python -m twine check dist/*