From 4f1e9522df4bbdc845d220ab7f31cf6352e4ce65 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Mon, 25 Oct 2021 05:10:45 -0400 Subject: [PATCH] Move around decorator --- src/julia/tests/test_core.py | 2 +- src/julia/tests/test_libjulia.py | 2 +- src/julia/tests/test_utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/julia/tests/test_core.py b/src/julia/tests/test_core.py index f54d27ef..60d45468 100644 --- a/src/julia/tests/test_core.py +++ b/src/julia/tests/test_core.py @@ -154,9 +154,9 @@ def test_module_dir(julia): assert "resize_b" in dir(Base) +@retry_failing_if_windows @pytest.mark.pyjulia__using_default_setup @pytest.mark.julia -@retry_failing_if_windows def test_import_without_setup(): command = [sys.executable, "-c", "from julia import Base"] print("Executing:", *command) diff --git a/src/julia/tests/test_libjulia.py b/src/julia/tests/test_libjulia.py index 02c19803..3141bbfc 100644 --- a/src/julia/tests/test_libjulia.py +++ b/src/julia/tests/test_libjulia.py @@ -8,9 +8,9 @@ juliainfo = JuliaInfo.load() +@retry_failing_if_windows @pytest.mark.skipif("juliainfo.version_info < (0, 7)") @pytest.mark.julia -@retry_failing_if_windows def test_compiled_modules_no(): runcode( """ diff --git a/src/julia/tests/test_utils.py b/src/julia/tests/test_utils.py index 0eccd7f5..9164d744 100644 --- a/src/julia/tests/test_utils.py +++ b/src/julia/tests/test_utils.py @@ -47,9 +47,9 @@ def f(): assert c[0] == 2 +@retry_failing_if_windows @pytest.mark.pyjulia__using_default_setup @pytest.mark.julia -@retry_failing_if_windows def test_atexit(): proc = runcode( '''