Skip to content

Commit

Permalink
AVRO-3067: Bump validation times for PyPy (apache#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanSkraba authored Aug 31, 2021
1 parent e8c61ba commit 042593d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang/py/avro/test/test_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
READER = avro.io.DatumReader(SCHEMA)
WRITER = avro.io.DatumWriter(SCHEMA)
NUMBER_OF_TESTS = 10000
MAX_WRITE_SECONDS = 5 if platform.python_implementation() == "PyPy" else 3
MAX_READ_SECONDS = 5 if platform.python_implementation() == "PyPy" else 3
MAX_WRITE_SECONDS = 10 if platform.python_implementation() == "PyPy" else 3
MAX_READ_SECONDS = 10 if platform.python_implementation() == "PyPy" else 3


class TestBench(unittest.TestCase):
Expand Down

0 comments on commit 042593d

Please sign in to comment.