Coverage for tests / testLib / testLibContinued.py: 80%

10 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-05-05 22:24 +0000

1from lsst.utils import continueClass 

2 

3from .testLib import TypeWithProxy, TypeWithoutProxy 

4 

5 

6@continueClass # noqa: F811 (FIXME: remove for py 3.8+) 

7class TypeWithProxy: # noqa: F811 

8 def __reduce__(self): 

9 return (TypeWithProxy, ()) 

10 

11 

12@continueClass # noqa: F811 (FIXME: remove for py 3.8+) 

13class TypeWithoutProxy: # noqa: F811 

14 def __reduce__(self): 

15 return (TypeWithoutProxy, ())