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

roundup-tracker / roundup / 22333158062

24 Feb 2026 01:16AM UTC coverage: 74.641% (+0.009%) from 74.632%
22333158062

push

github

rouilj
chore(build): build(deps): bump anchore/scan-action from 7.3.1 to 7.3.2 pull #82

19126 of 25624 relevant lines covered (74.64%)

4.39 hits per line

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

0.0
/roundup/scripts/roundup_admin.py
1
# Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
2
# This module is free software, and you may redistribute it and/or modify
3
# under the same terms as Python, so long as this copyright message and
4
# disclaimer are retained in their original form.
5
#
6
# IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
7
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
8
# OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
9
# POSSIBILITY OF SUCH DAMAGE.
10
#
11
# BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
12
# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
13
# FOR A PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
14
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
15
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
16

17
"""Command-line script stub that calls the roundup.admin functions.
18
"""
19
__docformat__ = 'restructuredtext'
×
20

21
# --- patch sys.path to make sure 'import roundup' finds correct version
22
import os.path as osp
×
23
import sys
×
24

25
thisdir = osp.dirname(osp.abspath(__file__))
×
26
rootdir = osp.dirname(osp.dirname(thisdir))
×
27
if (osp.exists(thisdir + '/__init__.py') and
×
28
        osp.exists(rootdir + '/roundup/__init__.py')):
29
    # the script is located inside roundup source code
30
    sys.path.insert(0, rootdir)
×
31
# --/
32

33

34
# python version check - import exits if version invalid
35
from roundup import version_check  # noqa: E402 F401
×
36

37
# import the admin tool guts and make it go
38
from roundup.admin import AdminTool  # noqa: E402
×
39

40

41
def run():
×
42
    tool = AdminTool()
×
43
    sys.exit(tool.main())
×
44

45

46
if __name__ == '__main__':
×
47
    run()
×
48

49
# vim: set filetype=python ts=4 sw=4 et si
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