This file is indexed.

/usr/share/sagemath/bin/sage-coverageall is in sagemath-common 7.4-9.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python

import os, sys

def coverage_all(directory):
    os.chdir(directory)
    r = os.popen('sage-coverage * | grep SCORE').readlines()

    s = []
    scr = 0
    total = 0
    for x in r:
        y = x.lstrip('SCORE ')
        i = y.rfind(' of ')
        j = y.rfind(')')
        n = int(y[i+4:j])

        i = y.rfind(':')
        j = y.rfind('%')
        scr += float(y[i+1:j]) * float(n)

        total += n

        s.append(y)

    print(''.join(s))

    # Trac #5859: Don't crash if there isn't anything to test.
    score = 100.0
    if total != 0:
        score = (float(scr) / total)

    print("Overall weighted coverage score: {:.1f}%".format(score))
    print("Total number of functions: {}".format(total))

    # Print up to 3 doctest coverage goals.
    i = 0
    for goal in [70, 75, 80, 85, 90, 95, 99]:
        if score < goal:
            i += 1
            if i > 3: break
            need = int((goal*total - scr)/100.0)
            print("We need {:>4} more function{} to get to {}% coverage."
                  .format(need, "" if (need == 1) else "s", goal))

if len(sys.argv) == 1:
    coverage_all(os.path.join(os.environ["SAGE_SRC"], 'sage'))
else:
    coverage_all(sys.argv[1])