Metadata-Version: 2.3
Name: process_time_azure_devops
Version: 0.0.8
Summary: Will collect process time for projects that are hosted in Azure DevOps
Project-URL: GitHub, https://github.com/worldpwn/process-time-azure-devops
Project-URL: Issues, https://github.com/worldpwn/process-time-azure-devops/issues
Author: Andrei Kniazev
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Provides-Extra: build
Requires-Dist: azure-devops==7.1.0b4; extra == 'build'
Requires-Dist: hatchling==1.24.2; extra == 'build'
Provides-Extra: test
Requires-Dist: azure-devops==7.1.0b4; extra == 'test'
Requires-Dist: pytest==8.2.0; extra == 'test'
Description-Content-Type: text/markdown

[![Publish](https://github.com/worldpwn/process-time-azure-devops/actions/workflows/publish.yml/badge.svg)](https://github.com/worldpwn/process-time-azure-devops/actions/workflows/publish.yml)
<a href="https://pypi.org/project/process-time-azure-devops/"><img alt="PyPI" src="https://img.shields.io/pypi/v/process-time-azure-devops"></a>
<img width="1597" alt="image" src="https://github.com/worldpwn/process-time-azure-devops/assets/6351780/d8adb7ce-e284-48e2-a56b-65ead73b17a6">


# Tutorial
## Azure Devops repository Access
To access repository in Azure DevOps with pipline access token you need either run pipeline.yml file from the repository itself or reference needed repository in reosource.
```yml
resources:
  repositories:
    - repository: process-time
      type: git
      name: process-time
      ref: main

steps:
- checkout: process-time
- checkout: self
- script: |
    # do something
  displayName: 'Can access both repositories'
  env:
    System.AccessToken: $(System.AccessToken)
```
