Skip to content

Commit

Permalink
fix test list
Browse files Browse the repository at this point in the history
  • Loading branch information
bszabo committed Jan 10, 2025
1 parent ecc4cb2 commit a6fb6e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tubular/scripts/dd_synthetic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def trigger_synthetic_tests(self, test_requests: [SyntheticTest]):
:param test_requests: List of tests to be run
:return: None, but saves batch ID and test run IDs as object attributes
'''
requests = list(self.WAFFLE_SWITCH_TEST) + test_requests
requests = [self.WAFFLE_SWITCH_TEST] + test_requests
self._record_batch_tests(test_requests)
self.trigger_time = time.time() # Key timeouts off of this
logging.info(f'CI batch triggered at time {self.trigger_time}')
Expand Down

0 comments on commit a6fb6e8

Please sign in to comment.