mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
29 lines
366 B
YAML
29 lines
366 B
YAML
language: python
|
|
dist: xenial
|
|
sudo: required
|
|
cache: pip
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
|
|
stages:
|
|
- lint
|
|
- test
|
|
|
|
jobs:
|
|
include:
|
|
- stage: lint
|
|
python: "3.7"
|
|
install:
|
|
- pip install -U pip setuptools flake8
|
|
script:
|
|
- flake8
|
|
|
|
install:
|
|
- pip install -U pip setuptools tox tox-travis
|
|
|
|
script:
|
|
- tox
|