File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
2525 - checkout
2626 - restore_cache :
2727 keys :
28+ - rest-auth-toolkit-py37-v6-{{ arch }}-{{ checksum "requirements-test.txt" }}-{{ checksum "demo/requirements.txt" }}
2829 - 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 }}-
3232 - run :
3333 name : Install CI tools
3434 command : |
4141 name : Check coverage with Python 3.7
4242 command : venv/bin/tox -e coverage
4343 - 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" }}
4545 paths :
4646 - venv
4747 - .tox
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def natural_key(self):
4646 return self .email
4747
4848
49- class BaseEmailConfirmation (models .Model ):
49+ class BaseEmailConfirmation (models .Model ): # pragma: no cover
5050 """Abstract model for email confirmations.
5151
5252 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 =
3939 DJANGO_SETTINGS_MODULE =demo.settings
4040python_paths = demo
4141addopts = -svv --showlocals --reuse-db
42- testpaths = tests
42+ testpaths = tests/unit tests/functional
4343norecursedirs =
4444 .tox
4545 __pycache__
4646 migrations
4747 templates
4848
4949[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
5151branch = 1
5252
5353[coverage:report]
You can’t perform that action at this time.
0 commit comments