Skip to content

Commit

Permalink
Move around decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Oct 25, 2021
1 parent 4b650a3 commit 4f1e952
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/julia/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/julia/tests/test_libjulia.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
"""
Expand Down
2 changes: 1 addition & 1 deletion src/julia/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
'''
Expand Down

0 comments on commit 4f1e952

Please sign in to comment.