• 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

55.0
/pythonforandroid/recipes/sqlite3/__init__.py
1
import sh
8✔
2
from pythonforandroid.logger import shprint
8✔
3
from pythonforandroid.util import current_directory
8✔
4
from pythonforandroid.recipe import Recipe
8✔
5
from multiprocessing import cpu_count
8✔
6

7

8
class Sqlite3Recipe(Recipe):
8✔
9
    version = '3.50.4'
8✔
10
    url = 'https://github.com/sqlite/sqlite/archive/refs/tags/version-{version}.tar.gz'
8✔
11
    built_libraries = {'libsqlite3.so': '.'}
8✔
12

13
    def build_arch(self, arch):
8✔
UNCOV
14
        env = self.get_recipe_env(arch)
×
15
        build_dir = self.get_build_dir(arch.arch)
×
UNCOV
16
        config_args = {
×
17
            '--host={}'.format(arch.command_prefix),
18
            '--prefix={}'.format(build_dir),
19
            '--disable-tcl',
20
        }
21
        with current_directory(build_dir):
×
UNCOV
22
            configure = sh.Command('./configure')
×
UNCOV
23
            shprint(configure, *config_args, _env=env)
×
UNCOV
24
            shprint(sh.make, '-j', str(cpu_count()), _env=env)
×
25

26

27
recipe = Sqlite3Recipe()
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