Skip to content

Commit de5349d

Browse files
committed
Run unittests sandboxed for coverage as well
1 parent ce58b55 commit de5349d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ language runtime. The main focus is on user-observable behavior of the engine.
1212
** Foreign lists now inherit from Python `list`, foreign dictionaries from `dict`, foreign iterators from `iterator`, foreign exceptions from `BaseException` and foreign none/null from `NoneType`.
1313
** This means all Python methods of these types are available on the corresponding foreign objects, which behave as close as possible as if they were Python objects.
1414
** See [the documentation](https://github.com/oracle/graalpython/blob/master/docs/user/Interoperability.md#interacting-with-foreign-objects-from-python-scripts) for more information.
15+
* Remove support for running with Sulong managed both in embeddings as well as through the `graalpy-managed` launcher.
1516

1617
## Version 24.1.0
1718
* GraalPy is now considered stable for pure Python workloads. While many workloads involving native extension modules work, we continue to consider them experimental. You can use the command-line option `--python.WarnExperimentalFeatures` to enable warnings for such modules at runtime. In Java embeddings the warnings are enabled by default and you can suppress them by setting the context option 'python.WarnExperimentalFeatures' to 'false'.

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2570,6 +2570,7 @@ def python_coverage(args):
25702570
else:
25712571
variants = [
25722572
{"args": []},
2573+
{"args": SANDBOXED_OPTIONS},
25732574
{"args": ["--python.EmulateJython"], "paths": ["test_interop.py"]},
25742575
{"hpy": True},
25752576
]

0 commit comments

Comments
 (0)