File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def identity(test_item):
64
64
return test_item
65
65
66
66
67
- def skip_unless_travis (reason ):
67
+ def skip_unless_ci (reason ):
68
68
"""Skip test unless test case is executed on CI like Travis CI
69
69
"""
70
70
if os .environ .get ('CI' , False ):
@@ -81,9 +81,9 @@ def requires_tls(skip_nss=False):
81
81
:param skip_nss: Skip test when libldap is compiled with NSS as TLS lib
82
82
"""
83
83
if not ldap .TLS_AVAIL :
84
- return skip_unless_travis ("test needs ldap.TLS_AVAIL" )
84
+ return skip_unless_ci ("test needs ldap.TLS_AVAIL" )
85
85
elif skip_nss and ldap .get_option (ldap .OPT_X_TLS_PACKAGE ) == 'MozNSS' :
86
- return skip_unless_travis (
86
+ return skip_unless_ci (
87
87
"Test doesn't work correctly with Mozilla NSS, see "
88
88
"https://bugzilla.redhat.com/show_bug.cgi?id=1519167"
89
89
)
You can’t perform that action at this time.
0 commit comments