-
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (31 loc) · 758 Bytes
/
push.yaml
File metadata and controls
33 lines (31 loc) · 758 Bytes
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
---
name: Push actions
on:
push:
branches:
- main
workflow_dispatch:
jobs:
tests:
runs-on: "ubuntu-latest"
name: Run tests
steps:
- name: Check out code from GitHub
uses: "actions/checkout@v4"
- name: Setup Python
uses: "actions/setup-python@v5"
with:
python-version: "3.13"
- name: Install requirements
run: python3 -m pip install -r requirements.txt -r requirements_test.txt
- name: Run tests
run: |
pytest \
-qq \
--timeout=9 \
--durations=10 \
-n auto \
--cov custom_components.label_state \
-o console_output_style=count \
-p no:sugar \
tests