We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1f0b4b commit 33f62a6Copy full SHA for 33f62a6
test/test_core.py
@@ -12,6 +12,8 @@
12
import sys
13
import os
14
15
+import pytest
16
+
17
python_version = sys.version_info
18
19
@@ -121,6 +123,10 @@ def test_module_dir(self):
121
123
from julia import Base
122
124
assert 'resize_b' in dir(Base)
125
126
+ @pytest.mark.skipif(
127
+ "JULIA_EXE" in orig_env,
128
+ reason=("cannot be tested with custom Julia executable;"
129
+ " JULIA_EXE is set to {}".format(orig_env.get("JULIA_EXE"))))
130
def test_import_without_setup(self):
131
command = [sys.executable, '-c', 'from julia import Base']
132
print('Executing:', *command)
0 commit comments