@@ -29,9 +29,6 @@ def __init__(self, params: CliTestSuiteParameters):
29
29
super ().__init__ (params )
30
30
self .suite_name = f"Test package installation/uninstallation. New version: { self .new_version } . Old version: { self .old_version } . Package type: { str (self .new_inst_e .installer_type )} . Enterprise edition."
31
31
32
- disable_for_debian_bts_684 = disable_for_debian (
33
- "Package installation/uninstallation tests are temporarily disabled for debian-based linux distros. Waiting for BTS-684."
34
- )
35
32
disable_for_zip_packages = disable_if_returns_true_at_runtime (
36
33
BasePackageInstallationTestSuite .is_zip , "This test case is not applicable for .zip packages."
37
34
)
@@ -40,7 +37,6 @@ def __init__(self, params: CliTestSuiteParameters):
40
37
"Test case is skipped because client package is not present for given installer type." ,
41
38
)
42
39
43
- @disable_for_debian_bts_684
44
40
@disable_for_windows
45
41
@disable_for_mac
46
42
@disable_for_zip_packages
@@ -49,7 +45,6 @@ def test1(self):
49
45
"""Check that new enterprise server package cannot be installed over a community package of previous version"""
50
46
check_if_server_packages_can_be_installed_consequentially (self .old_inst_c , self .new_inst_e , False )
51
47
52
- @disable_for_debian_bts_684
53
48
@disable_for_windows
54
49
@disable_for_mac
55
50
@disable_for_zip_packages
@@ -58,7 +53,6 @@ def test2(self):
58
53
"""Check that new enterprise server package cannot be installed over a community package of the same version"""
59
54
check_if_server_packages_can_be_installed_consequentially (self .new_inst_c , self .new_inst_e , False )
60
55
61
- @disable_for_debian_bts_684
62
56
@disable_for_windows
63
57
@disable_for_mac
64
58
@disable_for_zip_packages
@@ -67,7 +61,6 @@ def test3(self):
67
61
"""Check that enterprise debug package cannot be installed when community server package of current version is present"""
68
62
check_if_debug_package_can_be_installed_over_server_package (self .new_inst_e , self .new_inst_c , False )
69
63
70
- @disable_for_debian_bts_684
71
64
@disable_for_windows
72
65
@disable_for_mac
73
66
@disable_for_zip_packages
@@ -76,7 +69,6 @@ def test4(self):
76
69
"""Check that enterprise debug package cannot be installed when community server package of previous version is present"""
77
70
check_if_debug_package_can_be_installed_over_server_package (self .new_inst_e , self .old_inst_c , False )
78
71
79
- @disable_for_debian_bts_684
80
72
@disable_for_windows
81
73
@disable_for_mac
82
74
@disable_for_zip_packages
@@ -85,7 +77,6 @@ def test5(self):
85
77
"""Check that enterprise debug package cannot be installed if server package is not present."""
86
78
check_if_debug_package_can_be_installed (self .new_inst_e , False )
87
79
88
- @disable_for_debian_bts_684
89
80
@disable_for_windows
90
81
@disable_for_mac
91
82
@disable_for_zip_packages
@@ -128,7 +119,6 @@ def test10(self):
128
119
"""Check that enterprise client package can be installed/uninstalled."""
129
120
check_if_client_package_can_be_installed (self .new_inst_e , True )
130
121
131
- @disable_for_debian_bts_684
132
122
@disable_for_windows
133
123
@disable_for_mac
134
124
@disable_for_zip_packages
@@ -137,7 +127,6 @@ def test11(self):
137
127
"""Check that new enterprise server package can be installed"""
138
128
check_if_server_package_can_be_installed (self .new_inst_e )
139
129
140
- @disable_for_debian_bts_684
141
130
@disable_for_windows
142
131
@disable_for_mac
143
132
@disable_for_zip_packages
0 commit comments