diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-03-05 21:45:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 21:45:53 (GMT) |
commit | d31b28e16a2387d0251df948ef5d1b33d4357652 (patch) | |
tree | 277111caa96d5e2806bc241a227c78aab9de11eb | |
parent | 7acffa23c9e7866e5b4b98b8f3c28b14ec1c688c (diff) | |
download | cpython-d31b28e16a2387d0251df948ef5d1b33d4357652.zip cpython-d31b28e16a2387d0251df948ef5d1b33d4357652.tar.gz cpython-d31b28e16a2387d0251df948ef5d1b33d4357652.tar.bz2 |
Add Appveyor (GH-324)
-rw-r--r-- | .github/appveyor.yml | 6 | ||||
-rw-r--r-- | README.rst | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/.github/appveyor.yml b/.github/appveyor.yml new file mode 100644 index 0000000..c348c53 --- /dev/null +++ b/.github/appveyor.yml @@ -0,0 +1,6 @@ +version: 3.7.0a0.{build} +clone_depth: 5 +build_script: +- cmd: PCbuild\build.bat -e +test_script: +- cmd: PCbuild\rt.bat -q -uall -rwW --slowest --timeout=1200 -j0 @@ -5,6 +5,10 @@ This is Python version 3.7.0 alpha 1 :alt: CPython build status on Travis CI :target: https://travis-ci.org/python/cpython +.. image:: https://ci.appveyor.com/api/projects/status/4mew1a93xdkbf5ua/branch/master?svg=true + :alt: CPython build status on Appveyor + :target: https://ci.appveyor.com/project/python/cpython/branch/master + .. image:: https://codecov.io/gh/python/cpython/branch/master/graph/badge.svg :alt: CPython code coverage on Codecov :target: https://codecov.io/gh/python/cpython |