File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,17 @@ matrix:
57
57
- python : 3.6
58
58
env : TOXENV=py36-django22LTS
59
59
- python : 3.6
60
- env : TOXENV=py36-django31
60
+ env : TOXENV=py36-django30
61
61
- python : 3.6
62
62
env : TOXENV=py36-django31
63
+ - python : 3.6
64
+ env : TOXENV=py36-django32
65
+ - python : 3.8
66
+ env : TOXENV=py38-django30
67
+ - python : 3.8
68
+ env : TOXENV=py38-django31
69
+ - python : 3.8
70
+ env : TOXENV=py38-django32
63
71
script :
64
72
- docker build -t algoliasearch_django .
65
73
- docker run -it --rm --env ALGOLIA_APPLICATION_ID --env ALGOLIA_API_KEY --env ALGOLIA_SEARCH_API_KEY --env TOXENV -v $PWD:/code -w /code algoliasearch_django tox
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ def _should_really_index(self, instance):
260
260
# noinspection PyDeprecation
261
261
count_args = len (inspect .getargspec (self .should_index ).args )
262
262
263
- if is_method or count_args is 1 :
263
+ if is_method or count_args == 1 :
264
264
# bound method, call with instance
265
265
return self .should_index (instance )
266
266
else :
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ envlist =
8
8
{py34,py35,py36}-django20
9
9
{py34,py35,py36}-django21
10
10
{py34,py35,py36}-django22LTS
11
- {py34,py35,py36}-django30
12
- {py34,py35,py36}-django31
11
+ {py34,py35,py36,py38}-django30
12
+ {py34,py35,py36,py38}-django31
13
+ {py36,py38}-django32
13
14
coverage
14
15
skip_missing_interpreters = True
15
16
29
30
django22LTS: Django>=2.2,<3.0
30
31
django30: Django>=3.0,<3.1
31
32
django31: Django>=3.1,<3.2
33
+ django32: Django>=3.2,<3.3
32
34
passenv =
33
35
ALGOLIA*
34
36
TRAVIS*
You can’t perform that action at this time.
0 commit comments