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

SwissDataScienceCenter / renku-data-services / 19181077268

07 Nov 2025 09:00PM UTC coverage: 86.352% (-0.5%) from 86.841%
19181077268

Pull #1059

github

web-flow
Merge fb47045e6 into 58a6e4765
Pull Request #1059: fix: patching of session custom resources

89 of 104 new or added lines in 5 files covered. (85.58%)

577 existing lines in 33 files now uncovered.

22791 of 26393 relevant lines covered (86.35%)

1.52 hits per line

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

75.0
/components/renku_data_services/notebooks/api/schemas/logs.py
1
"""Schema for server logs."""
2

3
from marshmallow import INCLUDE, Schema, post_dump
2✔
4

5

6
class ServerLogs(Schema):
2✔
7
    """Server logs schema."""
8

9
    class Meta:
2✔
10
        """Custom configuration."""
11

12
        unknown = INCLUDE  # only affects loading, not dumping
2✔
13

14
    @post_dump(pass_original=True)
2✔
15
    def keep_unknowns(self, output: dict, orig: dict, **kwargs: dict) -> dict:
2✔
16
        """Keep unknowns when dumping."""
UNCOV
17
        output = {**orig, **output}
×
UNCOV
18
        return output
×
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