Skip to content

Commit d907c3a

Browse files
committed
SEDONA-725 rearrange the spark module
1 parent 4700974 commit d907c3a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

python/pytest.ini

-3
This file was deleted.

python/tests/flink/test_flink_registration.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@
2121
from tests.flink.conftest import has_pyflink
2222

2323
if not has_pyflink():
24-
pytest.skip("PyFlink is not installed. Skipping tests that require PyFlink.")
24+
pytest.skip("PyFlink is not installed. Skipping tests that require PyFlink.", allow_module_level=True)
2525

2626

27-
@pytest.mark.flink
2827
def test_register(table_env):
2928
result = (
3029
table_env.sql_query("SELECT ST_ASBinary(ST_Point(1.0, 2.0))")
@@ -35,7 +34,6 @@ def test_register(table_env):
3534
assert 1 == len([el for el in result])
3635

3736

38-
@pytest.mark.flink
3937
def test_register_udf(table_env):
4038
from pyflink.table.udf import ScalarFunction, udf
4139

0 commit comments

Comments
 (0)