forked from RedHatSatellite/satellite-sanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
executable file
·27 lines (24 loc) · 1.15 KB
/
tests.py
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import sys
import unittest
sys.path.append('satellite_sanity/rules/tests/')
from test_example_fails import TestExampleFails
from test_sat_uppercase_hostname import TestSatUppercaseHostname
from test_sat5_correct_java import TestSat5CorrectJava
from test_sat5_taskomatic_running import TestSat5TaskomaticRunning
from test_sat5_taskomatic_working import TestSat5TaskomaticWorking
from test_sat5_rhn_charsets import TestSat5RhnCharsets
from test_sat5_diskspace_check import TestSat5DiskspaceCheck
from test_neighbour_table_overflow import TestNeighbourTableOverflow
from test_hostname_matches import TestHostnameMatches
from test_sat5_cobbler_config import TestSat5CobblerConfig
from test_sat5_hw_reqs import TestSat5HWReqs
from test_sat6_hw_reqs import TestSat6HWReqs
from test_sat6_task_pending import TestSat6TaskPending
from test_sat6_hammer_ping import TestSat6HammerPing
from test_sat6_correct_channel import TestSat6CorrectChannel
from test_sat5_frequent_osad_disconnects import TestSat5FrequentOsadDisconnects
if __name__ == '__main__':
# TODO: Also check that all rules have corresponding test module
unittest.main()