├── .github └── workflows │ ├── flake8.yaml │ └── test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── azure-pipelines.yml ├── codecov.yml ├── noxfile.py ├── pepper ├── __init__.py ├── cli.py ├── exceptions.py ├── libpepper.py ├── retcode.py └── script.py ├── pyproject.toml ├── scripts ├── pepper └── pepper.cmd ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── integration ├── __init__.py ├── test_clients.py ├── test_json.py ├── test_local.py ├── test_login_opts.py ├── test_poller.py ├── test_profile.py ├── test_token.py └── test_vanilla.py ├── requirements.txt └── unit ├── __init__.py ├── test_init.py ├── test_login_details.py ├── test_retcodes_error.py ├── test_retcodes_fail_fail.py ├── test_retcodes_fail_none.py ├── test_retcodes_fail_pass.py ├── test_retcodes_none_none.py ├── test_retcodes_pass_fail.py ├── test_retcodes_pass_none.py ├── test_retcodes_pass_pass.py └── test_token.py /.github/workflows/flake8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/.github/workflows/flake8.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/README.rst -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/codecov.yml -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/noxfile.py -------------------------------------------------------------------------------- /pepper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pepper/__init__.py -------------------------------------------------------------------------------- /pepper/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pepper/cli.py -------------------------------------------------------------------------------- /pepper/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pepper/exceptions.py -------------------------------------------------------------------------------- /pepper/libpepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pepper/libpepper.py -------------------------------------------------------------------------------- /pepper/retcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pepper/retcode.py -------------------------------------------------------------------------------- /pepper/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pepper/script.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/pepper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/scripts/pepper -------------------------------------------------------------------------------- /scripts/pepper.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/scripts/pepper.cmd -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_clients.py -------------------------------------------------------------------------------- /tests/integration/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_json.py -------------------------------------------------------------------------------- /tests/integration/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_local.py -------------------------------------------------------------------------------- /tests/integration/test_login_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_login_opts.py -------------------------------------------------------------------------------- /tests/integration/test_poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_poller.py -------------------------------------------------------------------------------- /tests/integration/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_profile.py -------------------------------------------------------------------------------- /tests/integration/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_token.py -------------------------------------------------------------------------------- /tests/integration/test_vanilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/integration/test_vanilla.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_init.py -------------------------------------------------------------------------------- /tests/unit/test_login_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_login_details.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_error.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_fail_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_fail_fail.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_fail_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_fail_none.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_fail_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_fail_pass.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_none_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_none_none.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_pass_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_pass_fail.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_pass_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_pass_none.py -------------------------------------------------------------------------------- /tests/unit/test_retcodes_pass_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_retcodes_pass_pass.py -------------------------------------------------------------------------------- /tests/unit/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack/pepper/HEAD/tests/unit/test_token.py --------------------------------------------------------------------------------