Welcome to mirror list, hosted at ThFree Co, Russian Federation.

standard-tests-jobs.yml « jobs « templates « .azure-pipelines - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f49e04de3012e613b38b3e78248d6f46f17b26b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
jobs:
  - job: test
    variables:
      PYTHON_VERSION: 3.9
    strategy:
      matrix:
        macos-py310:
          IMAGE_NAME: macOS-10.15
          PYTHON_VERSION: 3.10
          TOXENV: py310
        linux-py310-cover:
          IMAGE_NAME: ubuntu-18.04
          PYTHON_VERSION: 3.10
          TOXENV: py310-cover
    pool:
      vmImage: $(IMAGE_NAME)
    steps:
      - template: ../steps/tox-steps.yml
  - job: test_sphinx_builds
    pool:
      vmImage: ubuntu-20.04
    steps:
      - template: ../steps/sphinx-steps.yml