mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Add TravisCI support.
This commit is contained in:
parent
3d6b05b3cc
commit
e3d1732fcc
1 changed files with 25 additions and 0 deletions
25
.travis.yml
Normal file
25
.travis.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
language: python
|
||||
cache: pip
|
||||
python:
|
||||
- "2.7"
|
||||
- "3.6"
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- python: 3.6
|
||||
env: TARGET=lint
|
||||
- python: 3.6
|
||||
env: TARGET=coverage
|
||||
after_success:
|
||||
- if [ $TRAVIS_UPLOAD_COVERAGE == "true" ]; then
|
||||
bash <(curl -s https://codecov.io/bash);
|
||||
fi
|
||||
- python: 2.7
|
||||
env: TARGET=test
|
||||
|
||||
install:
|
||||
- make depends
|
||||
|
||||
script:
|
||||
#- make $TARGET PYTHON=python$TRAVIS_PYTHON_VERSION
|
||||
- make $TARGET PYTHON=$TRAVIS_PYTHON_PATH
|
||||
Loading…
Add table
Add a link
Reference in a new issue