Skip to content

Re-enable tests with compiled_modules=False #463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/julia/tests/test_libjulia.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import sys

import pytest

from julia.core import JuliaInfo
Expand All @@ -10,7 +8,6 @@


@pytest.mark.skipif("juliainfo.version_info < (0, 7)")
@pytest.mark.skipif("sys.version_info >= (3, 9)")
@pytest.mark.julia
def test_compiled_modules_no():
runcode(
Expand Down
3 changes: 0 additions & 3 deletions src/julia/tests/test_sysimage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
import shutil
import sys
from subprocess import check_call

import pytest
Expand Down Expand Up @@ -46,7 +45,6 @@ def assert_sample_julia_code_runs(juliainfo, sysimage_path):
@only_in_ci
@skip_in_windows
@skip_in_apple
@pytest.mark.skipif("sys.version_info >= (3, 9)")
@pytest.mark.parametrize("with_pycall_cache", [False, True])
def test_build_and_load(tmpdir, juliainfo, with_pycall_cache):
skip_early_julia_versions(juliainfo)
Expand Down Expand Up @@ -75,7 +73,6 @@ def test_build_and_load(tmpdir, juliainfo, with_pycall_cache):
@only_in_ci
@skip_in_windows # Avoid "LVM ERROR: out of memory"
@skip_in_apple
@pytest.mark.skipif("sys.version_info >= (3, 9)")
def test_build_with_basesysimage_and_load(tmpdir, juliainfo):
skip_early_julia_versions(juliainfo)

Expand Down