qubes-installer-qubes-os/anaconda/tests/glade/run_glade_tests.py
Marek Marczykowski-Górecki 6bc5671491
anaconda: update to 25.20.9-1
Apply:
  git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1

And resolve conflicts.

QubesOS/qubes-issues#2574
2017-02-14 02:36:20 +01:00

25 lines
640 B
Python
Executable File

#!/usr/bin/python3
import nose
import os
import sys
import glob
from gladecheck import GladePlugin
# Check for prerequisites
# used in check_icons.py via tests/lib/iconcheck.py
if os.system("rpm -q adwaita-icon-theme >/dev/null 2>&1") != 0:
print("adwaita-icon-theme must be installed")
sys.exit(99)
# If no test scripts were specified on the command line, select check_*.py
if len(sys.argv) <= 1 or not sys.argv[-1].endswith('.py'):
sys.argv.extend(glob.glob(os.path.dirname(sys.argv[0]) + "/check_*.py"))
# Run in verbose mode
sys.argv.append('-v')
# Run nose with the glade plugin
nose.main(addplugins=[GladePlugin()])