mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-17 13:59:45 +08:00
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:
committed by
Jelle Zijlstra
parent
05780a0d11
commit
66778639a5
+10
-4
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user