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

kivy / python-for-android / 3770697291

pending completion
3770697291

push

github

GitHub
Merge pull request #2718 from kivy/release-2022.12.20

877 of 2011 branches covered (43.61%)

Branch coverage included in aggregate %.

38 of 86 new or added lines in 16 files covered. (44.19%)

10 existing lines in 4 files now uncovered.

4515 of 6886 relevant lines covered (65.57%)

2.59 hits per line

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

78.57
/pythonforandroid/recipes/aiohttp/__init__.py
1
"""Build AIOHTTP"""
2
from typing import List
4✔
3
from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe
4✔
4

5

6
class AIOHTTPRecipe(CppCompiledComponentsPythonRecipe):  # type: ignore # pylint: disable=R0903
4✔
7
    version = "3.8.3"
4✔
8
    url = "https://pypi.python.org/packages/source/a/aiohttp/aiohttp-{version}.tar.gz"
4✔
9
    name = "aiohttp"
4✔
10
    depends: List[str] = ["setuptools"]
4✔
11
    call_hostpython_via_targetpython = False
4✔
12
    install_in_hostpython = True
4✔
13

14
    def get_recipe_env(self, arch):
4✔
NEW
15
        env = super().get_recipe_env(arch)
×
NEW
16
        env['LDFLAGS'] += ' -lc++_shared'
×
NEW
17
        return env
×
18

19

20
recipe = AIOHTTPRecipe()
4✔
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

© 2025 Coveralls, Inc