We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0c3ff commit 936423bCopy full SHA for 936423b
.travis.yml
@@ -23,20 +23,25 @@ jobs:
23
script: |
24
set -e
25
pytest
26
+ - name: "run test suite with python 3.8"
27
+ python: 3.8
28
+ script: |
29
+ set -e
30
+ pytest
31
- name: "run typecheck on stubs"
- python: 3.7
32
33
34
35
mkdir tmpd
36
cp -r sqlalchemy-stubs tmpd/sqlalchemy
37
cd tmpd
38
python3 -m mypy -p sqlalchemy
39
- name: "run flake8 on stubs"
40
41
42
flake8 sqlalchemy-stubs
43
- name: "run typecheck on plugin"
44
45
46
47
MYPYPATH=external/mypy python3 -m mypy --config-file external/mypy/mypy_self_check.ini sqlmypy.py
0 commit comments