Skip to content

Commit 3a2fb0e

Browse files
author
Roman Statkevych
committed
Merge branch 'master' of https://github.com/MongoEngine/mongoengine into IcedNecro-populate
2 parents eb2463b + 5bdd354 commit 3a2fb0e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+850
-1281
lines changed

.install_mongodb_on_travis.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
sudo apt-get remove mongodb-org-server
34
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
45

56
if [ "$MONGODB" = "2.4" ]; then
@@ -13,11 +14,14 @@ elif [ "$MONGODB" = "2.6" ]; then
1314
sudo apt-get install mongodb-org-server=2.6.12
1415
# service should be started automatically
1516
elif [ "$MONGODB" = "3.0" ]; then
16-
echo "deb http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb.list
17+
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb.list
1718
sudo apt-get update
1819
sudo apt-get install mongodb-org-server=3.0.14
1920
# service should be started automatically
2021
else
2122
echo "Invalid MongoDB version, expected 2.4, 2.6, or 3.0."
2223
exit 1
2324
fi;
25+
26+
mkdir db
27+
1>db/logs mongod --dbpath=db &

.travis.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ language: python
1515
python:
1616
- 2.7
1717
- 3.5
18+
- 3.6
1819
- pypy
19-
- pypy3
2020

2121
env:
2222
- MONGODB=2.6 PYMONGO=2.7
@@ -40,9 +40,15 @@ matrix:
4040
env: MONGODB=2.4 PYMONGO=3.0
4141
- python: 3.5
4242
env: MONGODB=3.0 PYMONGO=3.0
43+
- python: 3.6
44+
env: MONGODB=2.4 PYMONGO=3.0
45+
- python: 3.6
46+
env: MONGODB=3.0 PYMONGO=3.0
4347

4448
before_install:
4549
- bash .install_mongodb_on_travis.sh
50+
- sleep 15 # https://docs.travis-ci.com/user/database-setup/#MongoDB-does-not-immediately-accept-connections
51+
- mongo --eval 'db.version();'
4652

4753
install:
4854
- sudo apt-get install python-dev python3-dev libopenjpeg-dev zlib1g-dev libjpeg-turbo8-dev

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,5 @@ that much better:
243243
* Victor Varvaryuk
244244
* Stanislav Kaledin (https://github.com/sallyruthstruik)
245245
* Dmitry Yantsen (https://github.com/mrTable)
246+
* Renjianxin (https://github.com/Davidrjx)
247+
* Erdenezul Batmunkh (https://github.com/erdenezul)

CONTRIBUTING.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,6 @@ You might also use the github `Edit <https://github.com/blog/844-forking-with-th
7777
button.
7878

7979
If you want to test your documentation changes locally, you need to install
80-
the ``sphinx`` package.
80+
the ``sphinx`` and ``sphinx_rtd_theme`` packages. Once these are installed,
81+
go to the ``docs`` directory, run ``make html`` and inspect the updated docs
82+
by running ``open _build/html/index.html``.

docs/_themes/sphinx_rtd_theme/__init__.py

-17
This file was deleted.

docs/_themes/sphinx_rtd_theme/breadcrumbs.html

-15
This file was deleted.

docs/_themes/sphinx_rtd_theme/footer.html

-30
This file was deleted.

docs/_themes/sphinx_rtd_theme/layout.html

-142
This file was deleted.

0 commit comments

Comments
 (0)