├── .azure-pipelines ├── docker.sh ├── docker │ ├── .gitignore │ ├── Dockerfile │ └── install.sh └── in_docker.sh ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── azure-pipelines.yml ├── docker-compose.yml ├── pytest_azurepipelines.py ├── resources └── style.css ├── screenshot.png ├── setup.py └── tests ├── conftest.py ├── fixture.gif ├── pytest.ini └── test_azurepipelines.py /.azure-pipelines/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/.azure-pipelines/docker.sh -------------------------------------------------------------------------------- /.azure-pipelines/docker/.gitignore: -------------------------------------------------------------------------------- 1 | *.rst 2 | *.py 3 | -------------------------------------------------------------------------------- /.azure-pipelines/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/.azure-pipelines/docker/Dockerfile -------------------------------------------------------------------------------- /.azure-pipelines/docker/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/.azure-pipelines/docker/install.sh -------------------------------------------------------------------------------- /.azure-pipelines/in_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/.azure-pipelines/in_docker.sh -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pytest_azurepipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/pytest_azurepipelines.py -------------------------------------------------------------------------------- /resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/resources/style.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/tests/fixture.gif -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_azurepipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/pytest-azurepipelines/HEAD/tests/test_azurepipelines.py --------------------------------------------------------------------------------