Skip to content

Commit dac21f8

Browse files
Merge remote-tracking branch 'main/master'
2 parents 0602425 + cedda9b commit dac21f8

File tree

282 files changed

+13458
-4868
lines changed

Some content is hidden

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

282 files changed

+13458
-4868
lines changed

.coveragerc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
omit =
3+
*/**/migrations/*

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.db
2+
*.rdb
23
*.egg-info
34
*.log
45
*.pyc
@@ -49,6 +50,7 @@ tags
4950
.python-version
5051
*.pyo
5152
.pytest_cache/
53+
scripts/travis/elasticsearch*
5254

5355
# Environments
5456
.env

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,25 @@ python:
33
- 2.7
44
- 3.6
55
sudo: false
6+
env:
7+
- ES_VERSION=1.3.9 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
68
matrix:
79
include:
810
- python: 2.7
911
env: TOXENV=docs
12+
- python: 3.6
13+
env: TOXENV=docs-lint
1014
- python: 2.7
1115
env: TOXENV=lint
16+
script: tox
1217
- python: 2.7
1318
env: TOXENV=eslint
14-
script:
15-
- tox
1619
cache:
1720
directories:
1821
- ~/.cache/pip
1922
- ~/.nvm/nvm.sh
2023
install:
24+
- ./scripts/travis/install_elasticsearch.sh
2125
- pip install tox-travis
2226
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
2327
- source ~/.nvm/nvm.sh
@@ -27,7 +31,7 @@ install:
2731
- npm install
2832
- bower install
2933
script:
30-
- tox
34+
- ./scripts/travis/run_tests.sh
3135
notifications:
3236
slack:
3337
rooms:

CHANGELOG.rst

Lines changed: 501 additions & 376 deletions
Large diffs are not rendered by default.

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ the Docs site`_.
2828

2929
.. _the Read the Docs site: https://docs.readthedocs.io/
3030

31+
Get in touch
32+
------------
33+
34+
You can find information about getting in touch with Read the Docs at our `Contribution page <https://docs.readthedocs.io/en/latest/contribute.html#get-in-touch>`_.
35+
3136
Contributing
3237
------------
3338

common

conftest.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import logging
2+
3+
import pytest
4+
5+
6+
def pytest_addoption(parser):
7+
parser.addoption('--including-search', action='store_true', dest="searchtests",
8+
default=False, help="enable search tests")
9+
10+
11+
def pytest_configure(config):
12+
if not config.option.searchtests:
13+
# Include `not search` to parameters so that search test do not perform
14+
setattr(config.option, 'markexpr', 'not search')
15+
16+
17+
@pytest.fixture(autouse=True)
18+
def settings_modification(settings):
19+
settings.CELERY_ALWAYS_EAGER = True

deploy/delete_stale_projects.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

deploy/flask-redirects.py

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)