* Adding Tensorflow2 Keras tests to layer tests * Fixed usage of use_new_frontend parameter in layer tests of Tensorflow2 Keras * Tests changed to use --use_old_api instead of --api_2 argument * Added copyrights in files * Added TF2-Keras Activation test to CI check
11 lines
303 B
Python
11 lines
303 B
Python
import inspect
|
|
|
|
from common.layer_test_class import get_params
|
|
from common.logger import *
|
|
|
|
|
|
def pytest_generate_tests(metafunc):
|
|
test_gen_attrs_names = list(inspect.signature(get_params).parameters)
|
|
params = get_params()
|
|
metafunc.parametrize(test_gen_attrs_names, params, scope="function")
|