Coverage for src/pytest_cases/_version.py: 75%

18 statements  

« prev     ^ index     » next       coverage.py v7.10.5, created at 2025-08-25 06:36 +0000

1# file generated by setuptools-scm 

2# don't change, don't track in version control 

3 

4__all__ = [ 

5 "__version__", 

6 "__version_tuple__", 

7 "version", 

8 "version_tuple", 

9 "__commit_id__", 

10 "commit_id", 

11] 

12 

13TYPE_CHECKING = False 

14if TYPE_CHECKING: 14 ↛ 15line 14 didn't jump to line 15 because the condition on line 14 was never true

15 from typing import Tuple 

16 from typing import Union 

17 

18 VERSION_TUPLE = Tuple[Union[int, str], ...] 

19 COMMIT_ID = Union[str, None] 

20else: 

21 VERSION_TUPLE = object 

22 COMMIT_ID = object 

23 

24version: str 

25__version__: str 

26__version_tuple__: VERSION_TUPLE 

27version_tuple: VERSION_TUPLE 

28commit_id: COMMIT_ID 

29__commit_id__: COMMIT_ID 

30 

31__version__ = version = '0.1.dev1+gf030486cd' 

32__version_tuple__ = version_tuple = (0, 1, 'dev1', 'gf030486cd') 

33 

34__commit_id__ = commit_id = 'gf030486cd'