diff --git a/pytests/tests/test_deprecated_pyfunctions.py b/pytests/tests/test_deprecated_pyfunctions.py index ec44d620..9fb0a16c 100644 --- a/pytests/tests/test_deprecated_pyfunctions.py +++ b/pytests/tests/test_deprecated_pyfunctions.py @@ -5,87 +5,57 @@ def none_py(): return None -def test_none_py(benchmark): - benchmark(none_py) - - -def test_none_rs(benchmark): +def test_none_rs(): rust = pyfunctions.none() py = none_py() assert rust == py - benchmark(pyfunctions.none) def simple_py(a, b="bar", *, c=None): return a, b, c -def test_simple_py(benchmark): - benchmark(simple_py, 1, "foo", c={1: 2}) - - -def test_simple_rs(benchmark): +def test_simple_rs(): rust = pyfunctions.simple(1, "foo", c={1: 2}) py = simple_py(1, "foo", c={1: 2}) assert rust == py - benchmark(pyfunctions.simple, 1, "foo", c={1: 2}) def simple_args_py(a, b="bar", *args, c=None): return a, b, args, c -def test_simple_args_py(benchmark): - benchmark(simple_args_py, 1, "foo", 4, 5, 6, c={1: 2}) - - -def test_simple_args_rs(benchmark): +def test_simple_args_rs(): rust = pyfunctions.simple_args(1, "foo", 4, 5, 6, c={1: 2}) py = simple_args_py(1, "foo", 4, 5, 6, c={1: 2}) assert rust == py - benchmark(pyfunctions.simple_args, 1, "foo", 4, 5, 6, c={1: 2}) def simple_kwargs_py(a, b="bar", c=None, **kwargs): return a, b, c, kwargs -def test_simple_kwargs_py(benchmark): - benchmark(simple_kwargs_py, 1, "foo", c={1: 2}, bar=4, foo=10) - - -def test_simple_kwargs_rs(benchmark): +def test_simple_kwargs_rs(): rust = pyfunctions.simple_kwargs(1, "foo", c={1: 2}, bar=4, foo=10) py = simple_kwargs_py(1, "foo", c={1: 2}, bar=4, foo=10) assert rust == py - benchmark(pyfunctions.simple_kwargs, 1, "foo", c={1: 2}, bar=4, foo=10) def simple_args_kwargs_py(a, b="bar", *args, c=None, **kwargs): return (a, b, args, c, kwargs) -def test_simple_args_kwargs_py(benchmark): - benchmark(simple_args_kwargs_py, 1, "foo", "baz", bar=4, foo=10) - - -def test_simple_args_kwargs_rs(benchmark): +def test_simple_args_kwargs_rs(): rust = pyfunctions.simple_args_kwargs(1, "foo", "baz", bar=4, foo=10) py = simple_args_kwargs_py(1, "foo", "baz", bar=4, foo=10) assert rust == py - benchmark(pyfunctions.simple_args_kwargs, 1, "foo", "baz", bar=4, foo=10) def args_kwargs_py(*args, **kwargs): return (args, kwargs) -def test_args_kwargs_py(benchmark): - benchmark(args_kwargs_py, 1, "foo", {1: 2}, bar=4, foo=10) - - -def test_args_kwargs_rs(benchmark): +def test_args_kwargs_rs(): rust = pyfunctions.args_kwargs(1, "foo", {1: 2}, bar=4, foo=10) py = args_kwargs_py(1, "foo", {1: 2}, bar=4, foo=10) assert rust == py - benchmark(pyfunctions.args_kwargs, 1, "foo", {1: 2}, a=4, foo=10)