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 3e57267 commit 463009bCopy full SHA for 463009b
graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/nodes/MemMoveNodeTests.java
@@ -57,13 +57,15 @@
57
import org.junit.Before;
58
import org.junit.Test;
59
60
+import java.util.Map;
61
+
62
public class MemMoveNodeTests {
63
64
private GilNode.UncachedAcquire gil;
65
66
@Before
67
public void setUp() {
- PythonTests.enterContext();
68
+ PythonTests.enterContext(Map.of("python.NativeModules", "false"), new String[0]);
69
this.gil = GilNode.uncachedAcquire();
70
CApiContext.ensureCapiWasLoaded("internal");
71
}
0 commit comments