├── .github └── workflows │ ├── dummy.yml │ ├── main.yml │ ├── push.yml │ └── support.yml ├── .gitignore ├── .isort.cfg ├── .packit.yaml ├── CHANGES.txt ├── LICENSE ├── Makefile ├── README.rst ├── _typos.toml ├── bin └── stratis ├── docs ├── Makefile └── stratis.txt ├── monkeytype_config.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── stratis_cli │ ├── __init__.py │ ├── _actions │ ├── __init__.py │ ├── _bind.py │ ├── _connection.py │ ├── _constants.py │ ├── _data.py │ ├── _debug.py │ ├── _environment.py │ ├── _formatting.py │ ├── _introspect.py │ ├── _list_filesystem.py │ ├── _list_pool.py │ ├── _logical.py │ ├── _physical.py │ ├── _pool.py │ ├── _stratis.py │ ├── _stratisd_version.py │ ├── _top.py │ └── _utils.py │ ├── _alerts.py │ ├── _constants.py │ ├── _error_reporting.py │ ├── _errors.py │ ├── _exit.py │ ├── _main.py │ ├── _parser │ ├── __init__.py │ ├── _debug.py │ ├── _encryption.py │ ├── _key.py │ ├── _logical.py │ ├── _parser.py │ ├── _physical.py │ ├── _pool.py │ └── _shared.py │ ├── _stratisd_constants.py │ └── _version.py └── tests ├── README.txt ├── __init__.py ├── _misc.py ├── integration ├── __init__.py ├── _keyutils.py ├── _misc.py ├── key │ ├── __init__.py │ ├── test_list.py │ ├── test_reset.py │ ├── test_set.py │ └── test_unset.py ├── logical │ ├── __init__.py │ ├── test_cancel_revert.py │ ├── test_create.py │ ├── test_debug.py │ ├── test_destroy.py │ ├── test_list.py │ ├── test_rename.py │ ├── test_schedule_revert.py │ ├── test_set_size_limit.py │ ├── test_snapshot.py │ └── test_unset_size_limit.py ├── physical │ ├── __init__.py │ ├── test_debug.py │ └── test_list.py ├── pool │ ├── __init__.py │ ├── test_add.py │ ├── test_bind.py │ ├── test_create.py │ ├── test_debug.py │ ├── test_destroy.py │ ├── test_encryption.py │ ├── test_explain.py │ ├── test_extend.py │ ├── test_init_cache.py │ ├── test_list.py │ ├── test_rebind.py │ ├── test_rename.py │ ├── test_set_fs_limit.py │ ├── test_set_overprovisioning.py │ ├── test_start.py │ ├── test_stop.py │ └── test_unbind.py ├── report │ ├── __init__.py │ └── test_get_report.py ├── test_debug.py ├── test_parser.py └── test_stratis.py └── unit ├── __init__.py ├── test_constants.py ├── test_error_fmt.py ├── test_errors.py ├── test_formatting.py ├── test_range_parsing.py ├── test_stratisd_constants.py └── test_timeout.py /.github/workflows/dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.github/workflows/dummy.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.github/workflows/support.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/.packit.yaml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/README.rst -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/_typos.toml -------------------------------------------------------------------------------- /bin/stratis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/bin/stratis -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/stratis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/docs/stratis.txt -------------------------------------------------------------------------------- /monkeytype_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/monkeytype_config.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/setup.py -------------------------------------------------------------------------------- /src/stratis_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/__init__.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/__init__.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_bind.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_connection.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_constants.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_data.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_debug.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_environment.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_formatting.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_introspect.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_list_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_list_filesystem.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_list_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_list_pool.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_logical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_logical.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_physical.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_pool.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_stratis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_stratis.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_stratisd_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_stratisd_version.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_top.py -------------------------------------------------------------------------------- /src/stratis_cli/_actions/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_actions/_utils.py -------------------------------------------------------------------------------- /src/stratis_cli/_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_alerts.py -------------------------------------------------------------------------------- /src/stratis_cli/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_constants.py -------------------------------------------------------------------------------- /src/stratis_cli/_error_reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_error_reporting.py -------------------------------------------------------------------------------- /src/stratis_cli/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_errors.py -------------------------------------------------------------------------------- /src/stratis_cli/_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_exit.py -------------------------------------------------------------------------------- /src/stratis_cli/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_main.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/__init__.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_debug.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_encryption.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_key.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_logical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_logical.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_parser.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_physical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_physical.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_pool.py -------------------------------------------------------------------------------- /src/stratis_cli/_parser/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_parser/_shared.py -------------------------------------------------------------------------------- /src/stratis_cli/_stratisd_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_stratisd_constants.py -------------------------------------------------------------------------------- /src/stratis_cli/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/src/stratis_cli/_version.py -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/README.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/_misc.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/_keyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/_keyutils.py -------------------------------------------------------------------------------- /tests/integration/_misc.py: -------------------------------------------------------------------------------- 1 | ../_misc.py -------------------------------------------------------------------------------- /tests/integration/key/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/key/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/key/test_list.py -------------------------------------------------------------------------------- /tests/integration/key/test_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/key/test_reset.py -------------------------------------------------------------------------------- /tests/integration/key/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/key/test_set.py -------------------------------------------------------------------------------- /tests/integration/key/test_unset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/key/test_unset.py -------------------------------------------------------------------------------- /tests/integration/logical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/logical/test_cancel_revert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_cancel_revert.py -------------------------------------------------------------------------------- /tests/integration/logical/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_create.py -------------------------------------------------------------------------------- /tests/integration/logical/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_debug.py -------------------------------------------------------------------------------- /tests/integration/logical/test_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_destroy.py -------------------------------------------------------------------------------- /tests/integration/logical/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_list.py -------------------------------------------------------------------------------- /tests/integration/logical/test_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_rename.py -------------------------------------------------------------------------------- /tests/integration/logical/test_schedule_revert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_schedule_revert.py -------------------------------------------------------------------------------- /tests/integration/logical/test_set_size_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_set_size_limit.py -------------------------------------------------------------------------------- /tests/integration/logical/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_snapshot.py -------------------------------------------------------------------------------- /tests/integration/logical/test_unset_size_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/logical/test_unset_size_limit.py -------------------------------------------------------------------------------- /tests/integration/physical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/physical/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/physical/test_debug.py -------------------------------------------------------------------------------- /tests/integration/physical/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/physical/test_list.py -------------------------------------------------------------------------------- /tests/integration/pool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/pool/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_add.py -------------------------------------------------------------------------------- /tests/integration/pool/test_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_bind.py -------------------------------------------------------------------------------- /tests/integration/pool/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_create.py -------------------------------------------------------------------------------- /tests/integration/pool/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_debug.py -------------------------------------------------------------------------------- /tests/integration/pool/test_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_destroy.py -------------------------------------------------------------------------------- /tests/integration/pool/test_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_encryption.py -------------------------------------------------------------------------------- /tests/integration/pool/test_explain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_explain.py -------------------------------------------------------------------------------- /tests/integration/pool/test_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_extend.py -------------------------------------------------------------------------------- /tests/integration/pool/test_init_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_init_cache.py -------------------------------------------------------------------------------- /tests/integration/pool/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_list.py -------------------------------------------------------------------------------- /tests/integration/pool/test_rebind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_rebind.py -------------------------------------------------------------------------------- /tests/integration/pool/test_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_rename.py -------------------------------------------------------------------------------- /tests/integration/pool/test_set_fs_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_set_fs_limit.py -------------------------------------------------------------------------------- /tests/integration/pool/test_set_overprovisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_set_overprovisioning.py -------------------------------------------------------------------------------- /tests/integration/pool/test_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_start.py -------------------------------------------------------------------------------- /tests/integration/pool/test_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_stop.py -------------------------------------------------------------------------------- /tests/integration/pool/test_unbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/pool/test_unbind.py -------------------------------------------------------------------------------- /tests/integration/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/report/test_get_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/report/test_get_report.py -------------------------------------------------------------------------------- /tests/integration/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/test_debug.py -------------------------------------------------------------------------------- /tests/integration/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/test_parser.py -------------------------------------------------------------------------------- /tests/integration/test_stratis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/integration/test_stratis.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_constants.py -------------------------------------------------------------------------------- /tests/unit/test_error_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_error_fmt.py -------------------------------------------------------------------------------- /tests/unit/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_errors.py -------------------------------------------------------------------------------- /tests/unit/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_formatting.py -------------------------------------------------------------------------------- /tests/unit/test_range_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_range_parsing.py -------------------------------------------------------------------------------- /tests/unit/test_stratisd_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_stratisd_constants.py -------------------------------------------------------------------------------- /tests/unit/test_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratis-storage/stratis-cli/HEAD/tests/unit/test_timeout.py --------------------------------------------------------------------------------