Skip to content

Commit

Permalink
Only run Travis tests on Python 3.7 once (compiled) (python#8196)
Browse files Browse the repository at this point in the history
Previously we ran them both compiled and interpreted, which
seems redundant.
  • Loading branch information
JukkaL authored Dec 23, 2019
1 parent aaae7e6 commit 61da677
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ jobs:
dist: trusty
- name: "run test suite with python 3.6"
python: 3.6 # 3.6.3 pip 9.0.1
- name: "run test suite with python 3.7"
python: 3.7 # 3.7.0 pip 10.0.1
- name: "run test suite with python 3.7 (compiled with mypyc)"
python: 3.7
env:
- TOXENV=py
- EXTRA_ARGS="-n 2"
- TEST_MYPYC=1
- name: "run test suite with python 3.8"
python: 3.8
- name: "run mypyc runtime tests with python 3.6 debug build"
Expand All @@ -47,12 +51,6 @@ jobs:
env:
- PYTHONVERSION=3.6.3
- EXTRA_ARGS="-n 2 mypyc/test/test_run.py mypyc/test/test_external.py"
- name: "run test suite with python 3.7 (compiled with mypyc)"
python: 3.7
env:
- TOXENV=py
- EXTRA_ARGS="-n 2"
- TEST_MYPYC=1
- name: "type check our own code"
python: 3.7
env:
Expand Down

0 comments on commit 61da677

Please sign in to comment.