Run CI tests against win32 and darwin platform (#3457)

Also use Python 3.8 as default Python version for tests
This commit is contained in:
Sebastian Rittau
2019-11-11 16:52:11 +01:00
committed by Jelle Zijlstra
parent 05780a0d11
commit 66778639a5
2 changed files with 14 additions and 4 deletions
+10 -4
View File
@@ -1,6 +1,6 @@
dist: bionic
language: python
python: 3.7
python: 3.8
jobs:
include:
@@ -11,11 +11,17 @@ jobs:
- name: "mypy (typed-ast)"
python: 3.7
install: pip install -U git+git://github.com/python/mypy git+git://github.com/python/typed_ast
script: ./tests/mypy_test.py
script: ./tests/mypy_test.py --platform=linux
- name: "mypy (ast)"
python: 3.8-dev
python: 3.8
install: pip install -U git+git://github.com/python/mypy
script: ./tests/mypy_test.py
script: ./tests/mypy_test.py --platform=linux
- name: "mypy (Windows)"
install: pip install -U git+git://github.com/python/mypy
script: ./tests/mypy_test.py --platform=win32
- name: "mypy (Darwin)"
install: pip install -U git+git://github.com/python/mypy
script: ./tests/mypy_test.py --platform=darwin
- name: "mypy self test"
script: ./tests/mypy_selftest.py
- name: "check file consistency"