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

SwissDataScienceCenter / renku-python / 4182445342

pending completion
4182445342

Pull #3320

github-actions

GitHub
Merge f135d5076 into 0e5906373
Pull Request #3320: chore: fix coveralls comments

12864 of 23835 relevant lines covered (53.97%)

1.18 hits per line

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

60.0
/renku/ui/cli/utils/plugins.py
1
# -*- coding: utf-8 -*-
2
#
3
# Copyright 2018-2022- Swiss Data Science Center (SDSC)
4
# A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and
5
# Eidgenössische Technische Hochschule Zürich (ETHZ).
6
#
7
# Licensed under the Apache License, Version 2.0 (the "License");
8
# you may not use this file except in compliance with the License.
9
# You may obtain a copy of the License at
10
#
11
#     http://www.apache.org/licenses/LICENSE-2.0
12
#
13
# Unless required by applicable law or agreed to in writing, software
14
# distributed under the License is distributed on an "AS IS" BASIS,
15
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
# See the License for the specific language governing permissions and
17
# limitations under the License.
18
"""Utility functions for plugins."""
3✔
19

20

21
def get_supported_formats():
3✔
22
    """Deferred import as plugins are slow."""
23
    from renku.core.plugin.workflow import get_supported_formats
1✔
24

25
    return get_supported_formats()
1✔
26

27

28
def available_workflow_providers():
3✔
29
    """Deferred import as plugins are slow."""
30
    from renku.core.plugin.provider import available_workflow_providers
×
31

32
    return available_workflow_providers()
×
33

34

35
def get_supported_session_providers_names():
3✔
36
    """Deferred import as plugins are slow."""
37
    from renku.core.plugin.session import get_supported_session_providers
×
38

39
    return [p.get_name() for p in get_supported_session_providers()]
×
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