We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbc445 commit c39bdb5Copy full SHA for c39bdb5
graalpython/com.oracle.graal.python.test/src/runner.py
@@ -575,7 +575,11 @@ def process_event(self, event):
575
test_id = event['test']
576
match event['event']:
577
case 'testStarted':
578
- self.remaining_test_ids.remove(test_id)
+ try:
579
+ self.remaining_test_ids.remove(test_id)
580
+ except ValueError:
581
+ # It executed something we didn't ask for. Not sure why this happens
582
+ log(f'WARNING: unexpected test started {test_id}')
583
self.runner.report_start(test_id)
584
with self.lock:
585
self.last_started_test_id = test_id
0 commit comments