Custom Query (2551 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 2551)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#4059 fixed bump subunitreporter to 23.8.0 GitHub <noreply@…> exarkun
Description

23.8.0 includes a fixed for unicode handling that mainly affects Windows and causes problems with collecting test results on the Windows jobs being moved to CircleCI.

#4057 fixed Move Windows unit tests to CircleCI GitHub <noreply@…> exarkun
Description

This is part of moving completely off of GitHub? actions.

#4055 fixed `await_client_ready` waits for the incorrect condition while trying to ensure enough servers are reachable GitHub <noreply@…> exarkun
Description

The function includes this

# check that all times are 'recent enough' (it's OK if _some_ servers                                                                                                     
# are down, we just want to make sure a sufficient number are up)                                                                                                         
if len([time.time() - t <= liveness for t in server_times if t is not None]) < minimum_number_of_servers:
    print("waiting because at least one server too old")
    time.sleep(1)
    continue

The list comprehension will filter out None server_times elements but it will not filter out non-None elements because the liveness comparison is in the result expression instead of the test list. It just puts bools into the resulting list and then checks its length.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.