Skip to content

Commit eb6397f

Browse files
committed
removing print
1 parent 91834ad commit eb6397f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tools/scripts/run_smoke_tests.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ def main():
2828

2929
total_tests = 0
3030
all_results = defaultdict(list)
31-
print(os.environ.get('AWS_SMOKE_TEST_SERVICE_IDS', ''))
3231
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)
3432
if service_id:
3533
filtered_services = [s for s in services if s in service_id]
3634
services = filtered_services if filtered_services else services
37-
print(services)
3835

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

0 commit comments

Comments
 (0)