• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

kivy / python-for-android / 22259302242

21 Feb 2026 03:24PM UTC coverage: 63.887% (+4.7%) from 59.214%
22259302242

Pull #3198

github

web-flow
Merge 758a52847 into 1fc026943
Pull Request #3198: Bump SDL3 (`3.4.2`) and SDL3_image (`3.4.0`) to the latest stable releases.

1823 of 3111 branches covered (58.6%)

Branch coverage included in aggregate %.

3 of 3 new or added lines in 2 files covered. (100.0%)

788 existing lines in 24 files now uncovered.

5287 of 8018 relevant lines covered (65.94%)

5.26 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

61.54
/pythonforandroid/recipes/apsw/__init__.py
1
from pythonforandroid.recipe import PyProjectRecipe
8✔
2

3

4
class ApswRecipe(PyProjectRecipe):
8✔
5
    version = '3.50.4.0'
8✔
6
    url = 'https://github.com/rogerbinns/apsw/releases/download/{version}/apsw-{version}.tar.gz'
8✔
7
    depends = ['sqlite3']
8✔
8
    site_packages_name = 'apsw'
8✔
9

10
    def get_recipe_env(self, arch, **kwargs):
8✔
UNCOV
11
        env = super().get_recipe_env(arch, **kwargs)
×
UNCOV
12
        sqlite_recipe = self.get_recipe('sqlite3', self.ctx)
×
UNCOV
13
        env['CFLAGS'] += ' -I' + sqlite_recipe.get_build_dir(arch.arch)
×
14
        env['LIBS'] = env.get('LIBS', '') + ' -lsqlite3'
×
15
        return env
×
16

17

18
recipe = ApswRecipe()
8✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc