-
Notifications
You must be signed in to change notification settings - Fork 103
executable file
·68 lines (61 loc) · 2.39 KB
/
unittests.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
name: "Unittest Workflow Plugins"
#on: [workflow_dispatch, push]
on:
workflow_dispatch:
push:
branches:
- '*'
- '!release_doc'
jobs:
build:
runs-on: ubuntu-20.04 #latest
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Python ${{ matrix.python-version }}
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: update OS (Ubuntu)
run: sudo apt-get update
- run: sudo apt-get install libudev-dev
- run: sudo apt-get install librrd-dev libpython3-dev
- run: sudo apt-get install gcc --only-upgrade
- uses: actions/checkout@v2
- name: Checkout SmartHomeNG CORE ${{steps.extract_branch.outputs.branch}} Branch
uses: actions/checkout@v2
with:
repository: smarthomeNG/smarthome
ref: ${{steps.extract_branch.outputs.branch}}
path: smarthomeng
- name: Checkout SmartHomeNG PLUGINS ${{steps.extract_branch.outputs.branch}} Branch
uses: actions/checkout@v2
with:
repository: smarthomeNG/plugins
ref: ${{steps.extract_branch.outputs.branch}}
path: smarthomeng/plugins
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: python3 -m pip install --upgrade pip #==19.3.1
- name: Install requirements for unit testing
run: pip install -r smarthomeng/tests/requirements.txt
- name: Build Requirements for SmartHomeNG
run: python3 smarthomeng/tools/build_requirements.py
- name: Install SmartHomeNG base requirements
# base requirements are needed for pytest to run
run: pip install -r smarthomeng/requirements/base.txt
# --- up to here, the workflow is identical for CORE and PLUGINS ---
- name: Install SmartHomeNG all requirements
# all requirements are needed for pytest to run plugin tests
run: pip install -r smarthomeng/requirements/all.txt
#- name: Install Database Plugin Requirements
# run: pip install -r smarthomeng/plugins/database/requirements.txt
- name: Run Python Unittests for PLUGINS
working-directory: ./smarthomeng/plugins
run: pytest