You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ko...@apache.org on 2021/08/31 02:12:24 UTC

[avro] branch master updated: AVRO-3067: Bump validation times for PyPy (#1316)

This is an automated email from the ASF dual-hosted git repository.

kojiromike pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 042593d  AVRO-3067: Bump validation times for PyPy (#1316)
042593d is described below

commit 042593d21a22918b2c3920470bbe0b5e586313e9
Author: RyanSkraba <ry...@skraba.com>
AuthorDate: Tue Aug 31 04:12:16 2021 +0200

    AVRO-3067: Bump validation times for PyPy (#1316)
---
 lang/py/avro/test/test_bench.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang/py/avro/test/test_bench.py b/lang/py/avro/test/test_bench.py
index a188768..f032dda 100644
--- a/lang/py/avro/test/test_bench.py
+++ b/lang/py/avro/test/test_bench.py
@@ -54,8 +54,8 @@ SCHEMA = cast(
 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):