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

dbekaert / RAiDER / 85e7e6a1-26d6-4ec1-9cfc-dbb792a60c5f

pending completion
85e7e6a1-26d6-4ec1-9cfc-dbb792a60c5f

Pull #426

circleci

GitHub
Release: v0.2.0 (#424)
Pull Request #426: Pulling refs/tags/v0.2.0 into dev

4793 of 4793 new or added lines in 36 files covered. (100.0%)

1942 of 5098 relevant lines covered (38.09%)

0.38 hits per line

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

0.0
/tools/RAiDER/cli/parser.py
1
import os
×
2

3
from RAiDER.cli.validators import BBoxAction, IntegerMappingType
×
4

5
def add_cpus(parser):
×
6
    parser.add_argument(
×
7
        '--cpus',
8
        help='The number of cpus to be used for multiprocessing or "all" for '
9
             'all available cpus.',
10
        type=IntegerMappingType(0, all=os.cpu_count()),
11
        default=8,
12
    )
13

14

15
def add_verbose(parser):
×
16
    parser.add_argument(
×
17
        '--verbose', '-v',
18
        help='Run in verbose mode',
19
        action='count',
20
        default=0
21
    )
22

23

24
def add_out(parser):
×
25
    parser.add_argument(
×
26
        '--out',
27
        help='Output directory',
28
        default='.'
29
    )
30

31

32
def add_bbox(parser):
×
33
    parser.add_argument(
×
34
        '--bbox', '-b',
35
        help="Bounding box",
36
        nargs=4,
37
        type=float,
38
        dest='query_area',
39
        action=BBoxAction,
40
        metavar=('S', 'N', 'W', 'E')
41
    )
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