Drop pymongo dev tests to speed things up.

We don't need to test it before a stable release and removing it shaves off
considerable amount of time from Travis builds.
This commit is contained in:
Stefan Wojcik 2017-02-25 16:06:19 -05:00
parent 2d429e3703
commit 4c629e46ce
2 changed files with 2 additions and 4 deletions

View File

@ -15,7 +15,6 @@ env:
- PYMONGO=2.7 - PYMONGO=2.7
- PYMONGO=2.8 - PYMONGO=2.8
- PYMONGO=3.0 - PYMONGO=3.0
- PYMONGO=dev
matrix: matrix:
fast_finish: true fast_finish: true
@ -94,5 +93,5 @@ deploy:
on: on:
tags: true tags: true
repo: MongoEngine/mongoengine repo: MongoEngine/mongoengine
condition: "$PYMONGO = dev" condition: "$PYMONGO = 3.0"
python: 2.7 python: 2.7

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = {py27,py33,py34,py35,pypy,pypy3}-{mg27,mg28,mg30,mgdev},flake8 envlist = {py27,py33,py34,py35,pypy,pypy3}-{mg27,mg28,mg30},flake8
[testenv] [testenv]
commands = commands =
@ -9,7 +9,6 @@ deps =
mg27: PyMongo<2.8 mg27: PyMongo<2.8
mg28: PyMongo>=2.8,<3.0 mg28: PyMongo>=2.8,<3.0
mg30: PyMongo>=3.0 mg30: PyMongo>=3.0
mgdev: https://github.com/mongodb/mongo-python-driver/tarball/master
setenv = setenv =
PYTHON_EGG_CACHE = {envdir}/python-eggs PYTHON_EGG_CACHE = {envdir}/python-eggs