├── .gitignore ├── API Samples.ipynb ├── LICENSE ├── README.md ├── contribute.md ├── requirements.dev.txt ├── requirements.jupyter.txt ├── requirements.txt └── src ├── .flake8 ├── config.py ├── exceptions.py ├── hacks.py ├── http_logging.py ├── runner.py ├── runner_lib.py ├── samples ├── __init__.py ├── build.py ├── core.py ├── git.py ├── test.py └── work_item_tracking.py ├── tests ├── __init__.py ├── test_http_logging.py └── test_runner.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /API Samples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/API Samples.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/README.md -------------------------------------------------------------------------------- /contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/contribute.md -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.jupyter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/requirements.jupyter.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = __pycache__ 3 | max-line-length = 120 4 | -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/config.py -------------------------------------------------------------------------------- /src/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/exceptions.py -------------------------------------------------------------------------------- /src/hacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/hacks.py -------------------------------------------------------------------------------- /src/http_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/http_logging.py -------------------------------------------------------------------------------- /src/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/runner.py -------------------------------------------------------------------------------- /src/runner_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/runner_lib.py -------------------------------------------------------------------------------- /src/samples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/samples/__init__.py -------------------------------------------------------------------------------- /src/samples/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/samples/build.py -------------------------------------------------------------------------------- /src/samples/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/samples/core.py -------------------------------------------------------------------------------- /src/samples/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/samples/git.py -------------------------------------------------------------------------------- /src/samples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/samples/test.py -------------------------------------------------------------------------------- /src/samples/work_item_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/samples/work_item_tracking.py -------------------------------------------------------------------------------- /src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/test_http_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/tests/test_http_logging.py -------------------------------------------------------------------------------- /src/tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/tests/test_runner.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-devops-python-samples/HEAD/src/utils.py --------------------------------------------------------------------------------