File: conftest.py

package info (click to toggle)
liquidctl 1.15.0-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,312 kB
  • sloc: python: 13,599; sh: 712; xml: 84; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 368 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
import sys

collect_ignore = [
    "setup.py",
    "extra/contrib/fusion_rgb_cycle.py",  # depends on coloraide
    "extra/prometheus-liquidctl-exporter.py",  # depends on prometheus_client
]

if sys.platform != "linux":
    collect_ignore.append("tests/test_smbus.py")

if sys.platform not in ["win32", "cygwin"]:
    collect_ignore.append("extra/windows/LQiNFO.py")