Skip to content

Commit 32a209e

Browse files
committed
Merge branch 'develop'
2 parents c603587 + fac544b commit 32a209e

File tree

100 files changed

+5439
-13172
lines changed

Some content is hidden

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

100 files changed

+5439
-13172
lines changed

.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
ignore = F401, F821, F841 local variable '_' is assigned to but never used, E126 continuation line over-indented for hanging indent

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Please use this issue tracker only for reporting bugs or feature requests.
33
44
If you need support, please use:
5-
5+
66
- our community forum
77
http://discourse.algolia.com
8-
8+
99
- StackOverflow with the `algolia` tag
1010
https://stackoverflow.com/questions/tagged/algolia
1111

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
| ----------------- | ----------
33
| Bug fix? | yes/no
44
| New feature? | yes/no <!-- please update the /CHANGELOG.md file -->
5-
| BC breaks? | no
5+
| BC breaks? | no
66
| Related Issue | Fix #... <!-- will close issue automatically, if any -->
77
| Need Doc update | yes/no
88

99

1010
## Describe your change
1111

12-
<!--
13-
Please describe your change, add as much detail as
12+
<!--
13+
Please describe your change, add as much detail as
1414
necessary to understand your code.
1515
-->
1616

1717
## What problem is this fixing?
1818

19-
<!--
20-
Please include everything needed to understand the problem,
19+
<!--
20+
Please include everything needed to understand the problem,
2121
its context and consequences, and, if possible, how to recreate it.
2222
-->

.gitignore

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
*.py[co]
1+
build/
2+
dist/
3+
__pycache__
4+
*.py[cod]
5+
*~
6+
@*
7+
/build
8+
/env
9+
*.iml
10+
/out/
11+
venv/
12+
.venv/
13+
.mypy_cache/
14+
.cache
15+
.stestr
216

317
# Packages
418
*.egg
519
*.egg-info
6-
dist
7-
build
8-
eggs
9-
parts
10-
bin
11-
develop-eggs
12-
.installed.cfg
13-
scratch
14-
env
15-
env3
16-
venv
20+
*.eggs
1721

18-
MANIFEST
22+
# IDEs
23+
.idea
24+
*.swp
25+
.vscode
1926

20-
# Installer logs
21-
pip-log.txt
27+
# Operating Systems
28+
.DS_Store
2229

23-
# Unit test / coverage reports
24-
.coverage
25-
.tox
30+
# Tests
2631
.pytest_cache/
27-
28-
# IDE/OS Files
29-
.idea
30-
.DS_Store
31-
.vscode
32-
pytest.ini
33-
tags
34-
.cache
32+
.coverage*
33+
.tox
34+
htmlcov

.stestr.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[DEFAULT]
2+
test_path=./tests
3+

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
language: python
22

3+
cache:
4+
directories:
5+
- $HOME/.cache/pip
6+
37
branches:
48
only:
59
- master
@@ -11,14 +15,16 @@ python:
1115
- "3.5"
1216
- "3.6"
1317

18+
matrix:
19+
include:
20+
- python: 3.7
21+
dist: xenial
22+
sudo: true
23+
1424
before_script:
15-
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.27.zip
16-
- unzip -q google_appengine_1.9.27.zip
1725
- wget https://alg.li/algolia-keys && chmod +x algolia-keys
1826

1927
install:
20-
- pip install --upgrade pip
21-
- if [[ $TOXENV == 'py32' ]]; then pip install -I 'virtualenv<14.0'; fi
2228
- pip install tox-travis
2329

2430
script:

0 commit comments

Comments
 (0)