add memcached integration test steps in starlark (#32729)

* add memcached integration test steps to starlark

* typo
This commit is contained in:
Kevin Minehart
2021-04-07 08:06:10 -05:00
committed by GitHub
parent d519913843
commit 82bae892eb
5 changed files with 78 additions and 4 deletions
+2 -1
View File
@@ -23,6 +23,7 @@ load(
'postgres_integration_tests_step',
'mysql_integration_tests_step',
'redis_integration_tests_step',
'memcached_integration_tests_step',
'get_windows_steps',
'benchmark_ldap_step',
'ldap_service',
@@ -103,7 +104,7 @@ def get_steps(edition, ver_mode):
])
if include_enterprise2:
steps.append(redis_integration_tests_step())
steps.extend([redis_integration_tests_step(), memcached_integration_tests_step()])
if should_upload:
steps.append(upload_cdn(edition=edition))