Codebase list python-webargs / c409d23f-164b-499c-8dc4-43268b4db21c/main azure-pipelines.yml
c409d23f-164b-499c-8dc4-43268b4db21c/main

Tree @c409d23f-164b-499c-8dc4-43268b4db21c/main (Download .tar.gz)

azure-pipelines.yml @c409d23f-164b-499c-8dc4-43268b4db21c/mainraw · history · blame

trigger:
  branches:
    include: [dev, test-me-*]
  tags:
    include: ['*']

# Run builds nightly to catch incompatibilities with new marshmallow releases
schedules:
- cron: "0 0 * * *"
  displayName: Daily midnight build
  branches:
    include:
      - dev
  always: "true"

resources:
  repositories:
    - repository: sloria
      type: github
      endpoint: github
      name: sloria/azure-pipeline-templates
      ref: refs/heads/sloria

jobs:
- template: job--python-tox.yml@sloria
  parameters:
    toxenvs:
      - lint
      - mypy
      - py36
      - py36-mindeps
      - py37
      - py38
      - py39
      - py39-marshmallowdev
      - docs
    os: linux
# Build wheels
- template: job--pypi-release.yml@sloria
  parameters:
    python: "3.9"
    distributions: "sdist bdist_wheel"
    dependsOn:
      - tox_linux