• 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/pynacl/__init__.py
1
from pythonforandroid.recipe import PyProjectRecipe
8✔
2
import os
8✔
3

4

5
class PyNaCLRecipe(PyProjectRecipe):
8✔
6
    name = 'pynacl'
8✔
7
    version = '1.3.0'
8✔
8
    url = 'https://github.com/pyca/pynacl/archive/refs/tags/{version}.tar.gz'
8✔
9

10
    depends = ['hostpython3', 'six', 'setuptools', 'cffi', 'libsodium']
8✔
11
    call_hostpython_via_targetpython = False
8✔
12
    hostpython_prerequisites = ["cffi>=2.0.0"]
8✔
13

14
    def get_recipe_env(self, arch, **kwargs):
8✔
15
        env = super().get_recipe_env(arch, **kwargs)
×
UNCOV
16
        env['SODIUM_INSTALL'] = 'system'
×
17

UNCOV
18
        libsodium_build_dir = self.get_recipe(
×
19
            'libsodium', self.ctx
20
        ).get_build_dir(arch.arch)
21

UNCOV
22
        env['CFLAGS'] += ' -I{}'.format(
×
23
            os.path.join(libsodium_build_dir, 'src/libsodium/include')
24
        )
25

26
        for ldflag in [
×
27
            self.ctx.get_libs_dir(arch.arch),
28
            self.ctx.libs_dir,
29
            libsodium_build_dir
30
        ]:
UNCOV
31
            env['LDFLAGS'] += ' -L{}'.format(ldflag)
×
32

UNCOV
33
        return env
×
34

35

36
recipe = PyNaCLRecipe()
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