File tree 7 files changed +29
-15
lines changed
7 files changed +29
-15
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ search = version='{current_version}'
8
8
replace = version =' {new_version}'
9
9
10
10
[bumpversion:file:README.rst]
11
- search = v{current_version}.
12
- replace = v{new_version}.
11
+ search = / v{current_version}.svg
12
+ replace = / v{new_version}.svg
13
13
14
14
[bumpversion:file:docs/conf.py]
15
15
search = version = release = ' {current_version}'
@@ -18,4 +18,3 @@ replace = version = release = '{new_version}'
18
18
[bumpversion:file:src/pytest_cov/__init__.py]
19
19
search = __version__ = ' {current_version}'
20
20
replace = __version__ = ' {new_version}'
21
-
Original file line number Diff line number Diff line change 1
1
# Generated by cookiepatcher, a small shim around cookiecutter (pip install cookiepatcher)
2
2
3
- cookiecutter:
4
- _extensions:
5
- - jinja2_time.TimeExtension
6
- _template: /home/ionel/open-source/cookiecutter-pylibrary
3
+ default_context:
7
4
allow_tests_inside_package: no
8
5
appveyor: yes
9
6
c_extension_function: '-'
@@ -23,7 +20,7 @@ cookiecutter:
23
20
distribution_name: pytest-cov
24
21
25
22
full_name: Ionel Cristian Mărieș
26
- landscape: no
23
+ legacy_python: yes
27
24
license: MIT license
28
25
linter: flake8
29
26
package_name: pytest_cov
@@ -50,7 +47,7 @@ cookiecutter:
50
47
test_runner: pytest
51
48
travis: yes
52
49
travis_osx: no
53
- version: 2.10.0
50
+ version: 2.10.1
54
51
website: http://blog.ionelmc.ro
55
52
year_from: '2010'
56
53
year_to: '2020'
Original file line number Diff line number Diff line change 2
2
root = true
3
3
4
4
[* ]
5
+ # Use Unix-style newlines for most files (except Windows files, see below).
5
6
end_of_line = lf
6
7
trim_trailing_whitespace = true
7
- insert_final_newline = true
8
8
indent_style = space
9
+ insert_final_newline = true
9
10
indent_size = 4
10
11
charset = utf-8
11
12
@@ -14,3 +15,6 @@ end_of_line = crlf
14
15
15
16
[* .{yml,yaml} ]
16
17
indent_size = 2
18
+
19
+ [* .tsv ]
20
+ indent_style = tab
Original file line number Diff line number Diff line change @@ -39,11 +39,14 @@ htmlcov
39
39
# Translations
40
40
* .mo
41
41
42
- # Mr Developer
42
+ # Buildout
43
43
.mr.developer.cfg
44
+
45
+ # IDE project files
44
46
.project
45
47
.pydevproject
46
48
.idea
49
+ .vscode
47
50
* .iml
48
51
* .komodoproject
49
52
Original file line number Diff line number Diff line change @@ -74,7 +74,8 @@ For merging, you should:
74
74
4. Add yourself to ``AUTHORS.rst ``.
75
75
76
76
.. [1 ] If you don't have all the necessary python versions available locally you can rely on Travis - it will
77
- `run the tests <https://travis-ci.org/pytest-dev/pytest-cov/pull_requests >`_ for each change you add in the pull request.
77
+ `run the tests <https://travis-ci.com//github/pytest-dev/pytest-cov/pull_requests >`_
78
+ for each change you add in the pull request.
78
79
79
80
It will be slower though ...
80
81
@@ -85,6 +86,6 @@ To run a subset of tests::
85
86
86
87
tox -e envname -- pytest -k test_myfeature
87
88
88
- To run the test environments in *parallel *::
89
+ To run all the test environments in *parallel *::
89
90
90
91
tox -p auto
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ Overview
19
19
:target: https://readthedocs.org/projects/pytest-cov
20
20
:alt: Documentation Status
21
21
22
- .. |travis | image :: https://api.travis-ci.org /pytest-dev/pytest-cov.svg?branch=master
22
+ .. |travis | image :: https://api.travis-ci.com /pytest-dev/pytest-cov.svg?branch=master
23
23
:alt: Travis-CI Build Status
24
- :target: https://travis-ci.org /pytest-dev/pytest-cov
24
+ :target: https://travis-ci.com/github /pytest-dev/pytest-cov
25
25
26
26
.. |appveyor | image :: https://ci.appveyor.com/api/projects/status/github/pytest-dev/pytest-cov?branch=master&svg=true
27
27
:alt: AppVeyor Build Status
Original file line number Diff line number Diff line change
1
+ [testenv:bootstrap]
2
+ deps =
3
+ jinja2
4
+ matrix
5
+ tox
6
+ skip_install = true
7
+ commands =
8
+ python ci/bootstrap.py --no-env
9
+ passenv =
10
+ *
1
11
; a generative tox configuration, see: https://tox.readthedocs.io/en/latest/config.html#generative-envlist
2
12
3
13
[tox]
You can’t perform that action at this time.
0 commit comments