From: Elena ``of Valhalla'' Grandi <valhalla@debian.org>
Date: Wed, 25 Oct 2023 11:44:18 +0200
Subject: Skip tests that require tabula-py (not available in debian)

Forwarded: not-needed
---
 test/table/test_table_extraction.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/test/table/test_table_extraction.py b/test/table/test_table_extraction.py
index 8f9f77b..8a52545 100644
--- a/test/table/test_table_extraction.py
+++ b/test/table/test_table_extraction.py
@@ -10,7 +10,6 @@ import camelot
 from pandas import DataFrame
 from pandas.testing import assert_frame_equal
 import pytest
-import tabula
 
 from test.table.test_table import TABLE_DATA
 
@@ -79,7 +78,7 @@ if sys.platform not in ("cygwin", "win32", "darwin"):
 ################################### tabula ####################################
 ###############################################################################
 
-
+@pytest.mark.skip(reason="tabula-py is not available in debian")
 @pytest.mark.parametrize(
     "filename",
     (
@@ -98,6 +97,7 @@ def test_tabula_extract_simple_table(filename):
         assert_frame_equal(df, TABLE_DATA_AS_DF, check_names=False)
 
 
+@pytest.mark.skip(reason="tabula-py is not available in debian")
 @pytest.mark.parametrize(
     "filename",
     (
@@ -113,6 +113,7 @@ def test_tabula_extract_two_tables(filename):
         assert_frame_equal(df, TABLE_DATA_AS_DF, check_names=False)
 
 
+@pytest.mark.skip(reason="tabula-py is not available in debian")
 @pytest.mark.xfail(
     reason="tabula does not successfully parse tables split on several pages"
 )
