Skip to content

Commit 936423b

Browse files
tdamsmaKKawamura1
andauthored
Test with python 3.8 (#186)
Co-authored-by: Keigo Kawamura <kkawamura@preferred.jp>
1 parent dd0c3ff commit 936423b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.travis.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,25 @@ jobs:
2323
script: |
2424
set -e
2525
pytest
26+
- name: "run test suite with python 3.8"
27+
python: 3.8
28+
script: |
29+
set -e
30+
pytest
2631
- name: "run typecheck on stubs"
27-
python: 3.7
32+
python: 3.8
2833
script: |
2934
set -e
3035
mkdir tmpd
3136
cp -r sqlalchemy-stubs tmpd/sqlalchemy
3237
cd tmpd
3338
python3 -m mypy -p sqlalchemy
3439
- name: "run flake8 on stubs"
35-
python: 3.7
40+
python: 3.8
3641
script: |
3742
flake8 sqlalchemy-stubs
3843
- name: "run typecheck on plugin"
39-
python: 3.7
44+
python: 3.8
4045
script: |
4146
set -e
4247
MYPYPATH=external/mypy python3 -m mypy --config-file external/mypy/mypy_self_check.ini sqlmypy.py

0 commit comments

Comments
 (0)