From e7da76514f6a36e8aa9c5ab689aca1d7dd5a38ec Mon Sep 17 00:00:00 2001 From: vvasuki Date: Wed, 2 Oct 2024 17:25:46 +0530 Subject: [PATCH] =?UTF-8?q?=E0=A4=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/aksharamukha_helper_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/aksharamukha_helper_test.py b/tests/aksharamukha_helper_test.py index 1bd87ed..1737030 100644 --- a/tests/aksharamukha_helper_test.py +++ b/tests/aksharamukha_helper_test.py @@ -1,3 +1,5 @@ +import importlib + import pytest import sys @@ -5,6 +7,8 @@ +@pytest.mark.skipif( + not importlib.util.find_spec("aksharamukha"), reason="requires the aksharamukha library") def test_transliterate_tamil(): assert aksharamukha_helper.transliterate_tamil("அற்று") == "अऱ्ऱु" \ No newline at end of file