File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
{{cookiecutter.project_slug}} Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ lint: ## check style with flake8
5252
5353test : # # run tests quickly with the default Python
5454{%- if cookiecutter.use_pytest == 'y' %}
55- pytest
55+ pytest -v --cov={{ cookiecutter.project_slug }} --cov-report=term-missing
5656{%- else %}
5757 python setup.py test
5858{%- endif %}
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ wheel==0.33.6
44watchdog==0.9.0
55flake8==3.7.8
66tox==3.14.0
7- coverage==4.5.4
7+ coverage==5.2
88Sphinx==1.8.5
99twine==1.14.0
1010{% if cookiecutter.command_line_interface|lower == 'click' -%}
1111Click==7.0{% endif %}
1212{% if cookiecutter.use_pytest == 'y' -%}
13- pytest==6.2.4{% endif %}
13+ pytest==5.4.3
14+ pytest-cov==2.10.0
15+ pytest-runner==5.2{% endif %}
Original file line number Diff line number Diff line change 1212
1313requirements = [{% - if cookiecutter .command_line_interface | lower == 'click' % }'Click>=7.0' ,{% - endif % } ]
1414
15- test_requirements = [{% - if cookiecutter .use_pytest == 'y' % }'pytest>=3 ' ,{% - endif % } ]
15+ test_requirements = [{% - if cookiecutter .use_pytest == 'y' % }'pytest-cov>=2.10.0 ' ,{% - endif % } ]
1616
1717{% - set license_classifiers = {
1818 'MIT license' : 'License :: OSI Approved :: MIT License' ,
3737 'Programming Language :: Python :: 3.6' ,
3838 'Programming Language :: Python :: 3.7' ,
3939 'Programming Language :: Python :: 3.8' ,
40- ],
40+ 'Programming Language :: Python :: 3.9' ,
41+ ],
4142 description = "{{ cookiecutter.project_short_description }}" ,
4243 {% - if 'no' not in cookiecutter .command_line_interface | lower % }
4344 entry_points = {
You can’t perform that action at this time.
0 commit comments