Updated script that can be controled by Nodejs web app
This commit is contained in:
12
lib/python3.13/site-packages/pandas/tests/util/test_numba.py
Normal file
12
lib/python3.13/site-packages/pandas/tests/util/test_numba.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import pytest
|
||||
|
||||
import pandas.util._test_decorators as td
|
||||
|
||||
from pandas import option_context
|
||||
|
||||
|
||||
@td.skip_if_installed("numba")
|
||||
def test_numba_not_installed_option_context():
|
||||
with pytest.raises(ImportError, match="Missing optional"):
|
||||
with option_context("compute.use_numba", True):
|
||||
pass
|
Reference in New Issue
Block a user