Skip to content

Commit 91834ad

Browse files
committed
testing
1 parent fb7eede commit 91834ad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/scripts/run_smoke_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ def main():
2828

2929
total_tests = 0
3030
all_results = defaultdict(list)
31-
31+
print(os.environ.get('AWS_SMOKE_TEST_SERVICE_IDS', ''))
3232
service_id = os.environ.get('AWS_SMOKE_TEST_SERVICE_IDS', '').strip().lower().replace(' ', '-') if os.environ.get('AWS_SMOKE_TEST_SERVICE_IDS', '').strip() else []
33+
print(service_id,services)
3334
if service_id:
3435
filtered_services = [s for s in services if s in service_id]
3536
services = filtered_services if filtered_services else services
37+
print(services)
3638

3739
for service in services:
3840
executable = os.path.join(smoke_tests_dir, service, f"{service}-smoke-tests")

0 commit comments

Comments
 (0)