autograder.cli.config

This package provides tools for working with project configuration options.

This package contains the following CLI tools:


autograder.cli.config.list

List the current configuration options.

usage: python3 -m autograder.cli.config.list [-h] [--version] [--testing-mode]
                                             [--include-cli] [--show-origin]
                                             [--skip-header]

autograder.cli.config.set

Update configuration options. The file at the specified config location will be created if it doesn't exist.

usage: python3 -m autograder.cli.config.set [-h] [--version] [--testing-mode]
                                            [--local | --project | --global | --file ]
                                            = [= ...]

autograder.cli.config.unset

Unset the first matching instance of a configuration option. Does nothing if there is no matching config.

usage: python3 -m autograder.cli.config.unset [-h] [--version]
                                              [--testing-mode]
                                              [--local | --project | --global | --file ]
                                              KEY [KEY ...]
1"""
2This package provides tools for working with project configuration options.
3"""