File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 6
6
from pandas import api
7
7
import pandas ._testing as tm
8
8
from pandas .api import (
9
+ executors as api_executors ,
9
10
extensions as api_extensions ,
10
11
indexers as api_indexers ,
11
12
interchange as api_interchange ,
@@ -243,6 +244,7 @@ def test_depr(self):
243
244
244
245
class TestApi (Base ):
245
246
allowed_api_dirs = [
247
+ "executors" ,
246
248
"types" ,
247
249
"extensions" ,
248
250
"indexers" ,
@@ -338,6 +340,7 @@ class TestApi(Base):
338
340
"ExtensionArray" ,
339
341
"ExtensionScalarOpsMixin" ,
340
342
]
343
+ allowed_api_executors = ["BaseExecutionEngine" ]
341
344
342
345
def test_api (self ):
343
346
self .check (api , self .allowed_api_dirs )
@@ -357,6 +360,9 @@ def test_api_indexers(self):
357
360
def test_api_extensions (self ):
358
361
self .check (api_extensions , self .allowed_api_extensions )
359
362
363
+ def test_api_executors (self ):
364
+ self .check (api_executors , self .allowed_api_executors )
365
+
360
366
361
367
class TestErrors (Base ):
362
368
def test_errors (self ):
You can’t perform that action at this time.
0 commit comments