-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests_to_run.py
48 lines (40 loc) · 2.57 KB
/
tests_to_run.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
Robot Framework documentation on how to select test cases to run:
https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#selecting-test-cases
If all list variables in this file are left empty (empty list)
then ALL tests under 'morpheus/tests/' will be executed.
"""
INCLUDE_TAGS = ['smoke']
EXCLUDE_TAGS = ['no-run']
SUITES = []
TESTS_BY_NAME = []
"""
+-----------------------------------------------------------------------------+
| AVAILABLE TAGS |
|-----------------------------------------------------------------------------|
| HIGH LEVEL..: web, web-e2e, integration, factory-default |
|-----------------------------------------------------------------------------|
| STATUS......: status, processing |
|-----------------------------------------------------------------------------|
| WIZARD......: wizard-router, wizard-repeater, wizard-facebook, router |
|-----------------------------------------------------------------------------|
| NETWORK.....: ethernet, lan, network-lan, wan, dns, routes |
|-----------------------------------------------------------------------------|
| WIRELESS....: wireless, wireless-2ghz, wireless-5ghz, wireless-roaming, |
| wireless-advanced, ssid-isolation, ssid-scheduling |
|-----------------------------------------------------------------------------|
| WI-FI MARKETING....: captive-portal |
|-----------------------------------------------------------------------------|
| TOOLS....: site-survey |
|-----------------------------------------------------------------------------|
| SERVICES....: services, auto-configuration, discovery, discovery-intelbras, |
| ntp, snmp, log, watchdog, ddns |
|-----------------------------------------------------------------------------|
| QOS ........: qos |
|-----------------------------------------------------------------------------|
| FIREWALL....: firewall, dmz, icmp-flood, ip-control, mac-control |
|-----------------------------------------------------------------------------|
| SYSTEM......: system, led, system-management, ssh, password, first-access, |
| settings, legal-information, update, reboot |
+-----------------------------------------------------------------------------+
"""