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

ReactiveX / RxPY / 19256588545

11 Nov 2025 06:01AM UTC coverage: 93.425% (-0.04%) from 93.462%
19256588545

Pull #743

github

dbrattli
Test fixes
Pull Request #743: RxPY v5

3390 of 3626 new or added lines in 119 files covered. (93.49%)

13 existing lines in 3 files now uncovered.

25007 of 26767 relevant lines covered (93.42%)

0.93 hits per line

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

88.89
/reactivex/internal/basic.py
1
from datetime import datetime, timezone
1✔
2
from typing import Any, NoReturn, TypeVar
1✔
3

4
_T = TypeVar("_T")
1✔
5

6

7
def noop(*args: Any, **kw: Any) -> None:
1✔
8
    """No operation. Returns nothing"""
9

10

11
def identity(x: _T) -> _T:
1✔
12
    """Returns argument x"""
13
    return x
1✔
14

15

16
def default_now() -> datetime:
1✔
17
    return datetime.now(timezone.utc)
1✔
18

19

20
def default_comparer(x: _T, y: _T) -> bool:
1✔
21
    return x == y
1✔
22

23

24
def default_sub_comparer(x: Any, y: Any) -> Any:
1✔
25
    return x - y
1✔
26

27

28
def default_key_serializer(x: Any) -> str:
1✔
29
    return str(x)
×
30

31

32
def default_error(err: Exception | str) -> NoReturn:
1✔
33
    if isinstance(err, BaseException):
1✔
34
        raise err
1✔
35

UNCOV
36
    raise Exception(err)
×
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