Merge pull request #732 from kiwix/test_likiwix

Activate testing of libkiwix on Windows
This commit is contained in:
Matthieu Gautier 2024-08-27 14:01:50 +02:00 committed by GitHub
commit d08c6095a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 8 deletions

View File

@ -50,11 +50,3 @@ class Libkiwix(Dependency):
if self.buildEnv.configInfo.build == "android": if self.buildEnv.configInfo.build == "android":
return "shared" return "shared"
return super().library_type return super().library_type
def _test(self, context):
# Libkiwix tests are currently broken on Windows.
# Until we fix them, let's deactivate tests.
# It allow us to build dependencies for kiwix-desktop
if neutralEnv("distname") == "Windows":
context.skip()
super()._test(context)