File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
- checkout
26
26
- restore_cache :
27
27
keys :
28
+ - rest-auth-toolkit-py37-v6-{{ arch }}-{{ checksum "requirements-test.txt" }}-{{ checksum "demo/requirements.txt" }}
28
29
- rest-auth-toolkit-py37-v5-{{ arch }}-{{ checksum "requirements-test.txt" }}-{{ checksum "demo/requirements.txt" }}
29
- - rest-auth-toolkit-py37-v5-{{ arch }}-{{ checksum "requirements-test.txt" }}-{{ checksum "demo/requirements.txt" }}
30
- - rest-auth-toolkit-py37-v5-{{ arch }}-{{ checksum "requirements-test.txt" }}
31
- - rest-auth-toolkit-py37-v5-{{ arch }}-
30
+ - rest-auth-toolkit-py37-v6-{{ arch }}-{{ checksum "requirements-test.txt" }}
31
+ - rest-auth-toolkit-py37-v6-{{ arch }}-
32
32
- run :
33
33
name : Install CI tools
34
34
command : |
41
41
name : Check coverage with Python 3.7
42
42
command : venv/bin/tox -e coverage
43
43
- save_cache :
44
- key : rest-auth-toolkit-py37-v5 -{{ arch }}-{{ checksum "requirements-test.txt" }}-{{ checksum "demo/requirements.txt" }}
44
+ key : rest-auth-toolkit-py37-v6 -{{ arch }}-{{ checksum "requirements-test.txt" }}-{{ checksum "demo/requirements.txt" }}
45
45
paths :
46
46
- venv
47
47
- .tox
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def natural_key(self):
46
46
return self .email
47
47
48
48
49
- class BaseEmailConfirmation (models .Model ):
49
+ class BaseEmailConfirmation (models .Model ): # pragma: no cover
50
50
"""Abstract model for email confirmations.
51
51
52
52
Subclass in your project to customize to your needs and make
Original file line number Diff line number Diff line change @@ -39,15 +39,15 @@ env =
39
39
DJANGO_SETTINGS_MODULE =demo.settings
40
40
python_paths = demo
41
41
addopts = -svv --showlocals --reuse-db
42
- testpaths = tests
42
+ testpaths = tests/unit tests/functional
43
43
norecursedirs =
44
44
.tox
45
45
__pycache__
46
46
migrations
47
47
templates
48
48
49
49
[coverage:run]
50
- source = rest_auth_toolkit/models.py , rest_auth_toolkit/managers.py , tests
50
+ source = rest_auth_toolkit.models , rest_auth_toolkit.managers , tests
51
51
branch = 1
52
52
53
53
[coverage:report]
You can’t perform that action at this time.
0 commit comments