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.
MAX_TIME_PER_OP
1 parent e32dab1 commit 3324331Copy full SHA for 3324331
test/perf_packet_fields.uts
@@ -16,7 +16,8 @@ NUMBER_OF_F_PER_I = 100
16
# - Make `TestPacket.end_case()` check for exact operation counts.
17
ASSERT_COUNTS = False
18
# - About 1.5s measured with optimizations on Windows / Python 3.8.6 with NUMBER_OF_I_PER_M=100, NUMBER_OF_F_PER_I=100.
19
-MAX_TIME_PER_OP = (1.5 / (100.0 * 100.0)) * 1.10 # 10% margin.
+# - About 1.9s measured with optimizations on github ci windows-latest / Python 3.13 with NUMBER_OF_I_PER_M=100, NUMBER_OF_F_PER_I=100.
20
+MAX_TIME_PER_OP = (2.0 / (100.0 * 100.0)) * 1.10 # 10% margin.
21
22
class TestPacket(Packet):
23
"""Base class for `M`, `I` and `F`."""
0 commit comments