Skip to content

Commit 80c20de

Browse files
committed
Add pre-commit hook for linters
- config taken from pyfakefs - add changes from autoblack - fix some warnings from the linters - increase max line length to 88 (black conform)
1 parent bddc8b8 commit 80c20de

38 files changed

+931
-886
lines changed

.github/workflows/pythontests.yml

-26
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,6 @@ defaults:
88
shell: bash
99

1010
jobs:
11-
linter:
12-
runs-on: ${{ matrix.os }}
13-
strategy:
14-
matrix:
15-
os: [ubuntu-latest]
16-
python-version: [3.8]
17-
steps:
18-
- uses: actions/checkout@v3
19-
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
21-
with:
22-
python-version: ${{ matrix.python-version }}
23-
- name: Get pip cache dir
24-
id: pip-cache
25-
run: |
26-
echo "::set-output name=dir::$(pip cache dir)"
27-
- name: pip cache
28-
uses: actions/cache@v3
29-
with:
30-
path: ${{ steps.pip-cache.outputs.dir }}
31-
key: py${{ matrix.python-version }}-${{ matrix.os }}-pip
32-
- name: Install linter
33-
run: python -m pip install flake8
34-
- name: Check syntax and style
35-
run: python -m flake8 .
36-
3711
test:
3812
runs-on: ${{ matrix.os }}
3913
strategy:

.pre-commit-config.yaml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
default_language_version:
2+
python: "3.10"
3+
4+
repos:
5+
- repo: https://github.com/codespell-project/codespell
6+
rev: v2.2.5
7+
hooks:
8+
- id: codespell
9+
args:
10+
- --ignore-words-list=wronly,afile
11+
- repo: https://github.com/psf/black
12+
rev: 23.7.0
13+
hooks:
14+
- id: black
15+
args: [ --safe, --quiet ]
16+
- repo: https://github.com/asottile/blacken-docs
17+
rev: 1.15.0
18+
hooks:
19+
- id: blacken-docs
20+
additional_dependencies: [ black==22.12.0 ]
21+
- repo: https://github.com/pre-commit/pre-commit-hooks
22+
rev: v4.4.0
23+
hooks:
24+
- id: trailing-whitespace
25+
- id: end-of-file-fixer
26+
- id: fix-encoding-pragma
27+
args: [ --remove ]
28+
- id: check-yaml
29+
- id: debug-statements
30+
language_version: python3
31+
- repo: https://github.com/PyCQA/autoflake
32+
rev: v2.2.0
33+
hooks:
34+
- id: autoflake
35+
name: autoflake
36+
args: ["--in-place", "--remove-unused-variables", "--remove-all-unused-imports"]
37+
language: python
38+
files: \.py$
39+
- repo: https://github.com/PyCQA/flake8
40+
rev: 6.0.0
41+
hooks:
42+
- id: flake8
43+
language_version: python3
44+
additional_dependencies:
45+
- flake8-bugbear
46+
args: ["--extend-ignore=E203", "--max-line-length=88"]
47+
- repo: https://github.com/pre-commit/mirrors-mypy
48+
rev: v1.4.1
49+
hooks:
50+
- id: mypy
51+
exclude: (docs|pyfakefs/tests)

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
"args": ["-v"]
1313
}
1414
]
15-
}
15+
}

.vscode/settings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"restructuredtext.confPath": "${workspaceFolder}\\docs\\source",
33
"python.formatting.blackArgs": [
44
"--line-length",
5-
"79",
5+
"88",
66
"--skip-string-normalization"
77
],
88
"python.formatting.provider": "black",
99
"editor.rulers": [79, 87]
10-
}
10+
}

AUTHORS

-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ Jonas Zinn <[email protected]>
77
Andrew Gilbert <[email protected]>
88
Bartosz Peszek <[email protected]>
99
mrbean-bremen <[email protected]>
10-

CHANGELOG.md

+30-27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# pytest-order Release Notes
22

3+
### Infrastructure
4+
* add pre-commit hook for linters
5+
36
## [Version 1.1.0](https://pypi.org/project/pytest-order/1.1.0/) (2023-03-10)
47
Adds support for executing tests more than once using order marks.
58

@@ -29,24 +32,24 @@ First Python 3 only version.
2932

3033
### Breaking changes
3134
- removed support for Python 2.7 and 3.5
32-
- removed official support for pytest < 5.0.0 (older versions may still
35+
- removed official support for pytest < 5.0.0 (older versions may still
3336
work, but they are not tested)
3437
- changed notation of relative markers in other modules - instead of using
3538
the dot notation, the standard pytest nodeid is used,
3639
see [#24](https://github.com/pytest-dev/pytest-order/issues/24)
37-
- using parametrized test names that include the parameter is no longer
38-
supported, just use the name without the parameter instead
40+
- using parametrized test names that include the parameter is no longer
41+
supported, just use the name without the parameter instead
3942

4043
### New features
4144
- added support for the ``pytest-dependency`` option ``automark_dependency``
42-
- added support for relative ordering of parametrized tests using the test
45+
- added support for relative ordering of parametrized tests using the test
4346
name without the parameter value,
4447
see [#38](https://github.com/pytest-dev/pytest-order/issues/38)
45-
48+
4649
### Infrastructure
4750
- re-added Python 3.10 to CI tests (for pytest >= 6.2.4)
4851
- added type hints
49-
52+
5053
## [Version 0.11.0](https://pypi.org/project/pytest-order/0.11.0/) (2021-04-11)
5154
Adds support for multiple relative markers for the same test.
5255

@@ -63,7 +66,7 @@ Adds support for class-level relative markers and directory level scope.
6366
- added support for class level relative markers,
6467
see [#7](https://github.com/pytest-dev/pytest-order/issues/7)
6568
- added option `--order-scope-level` which allows grouping tests on the
66-
same directory level,
69+
same directory level,
6770
see [#8](https://github.com/pytest-dev/pytest-order/issues/8)
6871

6972
### Fixes
@@ -76,26 +79,26 @@ Adds support for class-level relative markers and directory level scope.
7679

7780
## [Version 0.9.5](https://pypi.org/project/pytest-order/0.9.5/) (2021-02-16)
7881
Introduces hierarchical ordering option and fixes ordering of session-scoped
79-
dependency markers.
82+
dependency markers.
8083

8184
### Changes
8285
- tests with unresolved relative markers are now handled like tests
83-
without order markers instead of being enqueued after all other tests
86+
without order markers instead of being enqueued after all other tests
8487

8588
### New features
8689
- added `group-order-scope` option to allow hierarchical ordering on module
87-
and class scope,
90+
and class scope,
8891
see [#6](https://github.com/pytest-dev/pytest-order/issues/6)
89-
92+
9093
### Fixes
91-
- the dependency marker scope is now considered for resolving marker names
94+
- the dependency marker scope is now considered for resolving marker names
9295
(module scope had been assumed before)
9396
- dependency markers in session scope referenced by the nodeid are now
9497
correctly sorted if using the `order-dependencies` option
95-
98+
9699

97100
## [Version 0.9.4](https://pypi.org/project/pytest-order/0.9.4/) (2021-01-27)
98-
Patch release to make packaging easier.
101+
Patch release to make packaging easier.
99102

100103
### Infrastructure
101104
- use codecov instead of coveralls, that is failing
@@ -107,7 +110,7 @@ Patch release to make packaging easier.
107110
Bugfix release.
108111

109112
### Fixes
110-
- fixed handling of more than one attribute in an order marker
113+
- fixed handling of more than one attribute in an order marker
111114

112115
## [Version 0.9.2](https://pypi.org/project/pytest-order/0.9.2/) (2020-11-13)
113116
Friday the 13th release.
@@ -117,7 +120,7 @@ Friday the 13th release.
117120
delimiter)
118121

119122
### Fixes
120-
- fixed handling of before/after markers in different classes and modules
123+
- fixed handling of before/after markers in different classes and modules
121124
- fixed handling of names in dependencies - did not match the actual
122125
behavior of `pytest-dependency`
123126

@@ -126,7 +129,7 @@ This is a bugfix only release.
126129

127130
### Fixes
128131
- fixed handling of relative markers in classes
129-
- fixed handling of dependencies (could have been added twice)
132+
- fixed handling of dependencies (could have been added twice)
130133

131134
## [Version 0.9.0](https://pypi.org/project/pytest-order/0.9.0/) (2020-11-08)
132135
This is the last major version that will support Python 2 - Python 2 support
@@ -139,9 +142,9 @@ demand-driven.
139142

140143
### New features
141144
- added configuration option for sparse sorting, e.g. the possibility to
142-
fill gaps between ordinals with unordered tests (see also
145+
fill gaps between ordinals with unordered tests (see also
143146
[this issue](https://github.com/ftobia/pytest-ordering/issues/14) in
144-
`pytest-ordering`)
147+
`pytest-ordering`)
145148
- ignore ordering if it would break a dependency defined by the
146149
`pytest-dependency` plugin
147150
- experimental: added configuration option for ordering all dependencies
@@ -150,11 +153,11 @@ demand-driven.
150153

151154
### Fixes
152155
- correctly handle combined index and dependency attributes
153-
156+
154157
### Infrastructure
155158
- added list of open issues in `pytest-ordering` with respective state
156-
in `pytest-order`
157-
159+
in `pytest-order`
160+
158161
## [Version 0.8.1](https://pypi.org/project/pytest-order/0.8.1/) (2020-11-02)
159162

160163
### New features
@@ -163,16 +166,16 @@ demand-driven.
163166

164167
## [Version 0.8.0](https://pypi.org/project/pytest-order/0.8.0/) (2020-10-30)
165168
This release is mostly related to the consolidation of infrastructure
166-
(documentation build and tests in CI build) and documentation.
169+
(documentation build and tests in CI build) and documentation.
167170

168171
### Fixes
169172
- fixed the handling of unknown marker attributes (test had been skipped)
170173

171174
### Infrastructure
172-
- added automatic documentation build on change
175+
- added automatic documentation build on change
173176
- added Python 3.9, pypy3 and pytest 6.0 and 6.1 to CI builds
174177
- use GitHub Actions for CI builds to speed them up, added Windows CI builds
175-
- added regression test for ``pytest-xdist``
178+
- added regression test for ``pytest-xdist``
176179
(imported from [PR #52](https://github.com/ftobia/pytest-ordering/pull/52))
177180

178181
## [Version 0.7.1](https://pypi.org/project/pytest-order/0.7.1/) (2020-10-24)
@@ -182,12 +185,12 @@ Update after renaming the repository and the package.
182185
- renamed repository and package from ``pytest-ordering2`` to ``pytest-order``
183186
- changed the used marker from ``run`` to ``order``, removed all additional
184187
markers (see [#38](https://github.com/ftobia/pytest-ordering/issues/38))
185-
188+
186189
### Documentation
187190
- use separate documentation pages for release and development versions
188191

189192
## Version 0.7.0 (2020-10-22)
190-
Imported version from [pytest-ordering](https://github.com/ftobia/pytest-ordering),
193+
Imported version from [pytest-ordering](https://github.com/ftobia/pytest-ordering),
191194
including some PRs (manually merged).
192195
Note: this version has been removed from PyPi to avoid confusion with the
193196
changed name in the next release.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1919
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2020
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22-
SOFTWARE.
22+
SOFTWARE.

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ _pytest-order_ - a pytest plugin to order test execution
55

66
`pytest-order` is a pytest plugin that allows you to customize the order in which
77
your tests are run. It uses the marker `order` that defines when a specific
8-
test shall run, either by using an ordinal number, or by specifying the
9-
relationship to other tests.
8+
test shall run, either by using an ordinal number, or by specifying the
9+
relationship to other tests.
1010

1111
`pytest-order` is a fork of
1212
[pytest-ordering](https://github.com/ftobia/pytest-ordering) that provides
1313
additional features like ordering relative to other tests.
1414

15-
`pytest-order` works with Python 3.7 - 3.11, with pytest
15+
`pytest-order` works with Python 3.7 - 3.11, with pytest
1616
versions >= 5.0.0 for all versions up to Python 3.9, and for pytest >=
1717
6.2.4 for Python 3.10 and 3.11. `pytest-order` runs on Linux, macOS and Windows.
1818

@@ -21,7 +21,7 @@ Documentation
2121
Apart from this overview, the following information is available:
2222
- usage documentation for the [latest release](https://pytest-order.readthedocs.io/en/stable/)
2323
- usage documentation for the [current main branch](https://pytest-order.readthedocs.io/en/latest/)
24-
- most examples shown in the documentation can also be found in the
24+
- most examples shown in the documentation can also be found in the
2525
[repository](https://github.com/pytest-dev/pytest-order/tree/main/example)
2626
- the [Release Notes](https://github.com/pytest-dev/pytest-order/blob/main/CHANGELOG.md)
2727
with a list of changes in the latest versions
@@ -40,13 +40,13 @@ Features
4040
[order-scope](https://pytest-order.readthedocs.io/en/stable/configuration.html#order-scope) option
4141
- directory scope ordering via the
4242
[order-scope-level](https://pytest-order.readthedocs.io/en/stable/configuration.html#order-scope-level) option
43-
- hierarchical module and class-level ordering via the
43+
- hierarchical module and class-level ordering via the
4444
[order-group-scope](https://pytest-order.readthedocs.io/en/stable/configuration.html#order-group-scope) option
4545
- ordering tests with `pytest-dependency` markers if using the
46-
[order-dependencies](hhttps://pytest-order.readthedocs.io/en/stable/configuration.html#order-dependencies) option,
46+
[order-dependencies](hhttps://pytest-order.readthedocs.io/en/stable/configuration.html#order-dependencies) option,
4747
more information about `pytest-dependency` compatibility
48-
[here](https://pytest-order.readthedocs.io/en/stable/other_plugins.html#relationship-with-pytest-dependency)
49-
- sparse ordering of tests via the
48+
[here](https://pytest-order.readthedocs.io/en/stable/other_plugins.html#relationship-with-pytest-dependency)
49+
- sparse ordering of tests via the
5050
[sparse-ordering](https://pytest-order.readthedocs.io/en/stable/configuration.html#sparse-ordering) option
5151

5252
Overview
@@ -64,7 +64,7 @@ Install with:
6464
pip install pytest-order
6565

6666
This defines the ``order`` marker that you can use in your code with
67-
different attributes.
67+
different attributes.
6868

6969
For example, this code:
7070

@@ -93,7 +93,7 @@ yields the output:
9393

9494
Contributing
9595
------------
96-
Contributions are very welcome. Tests can be run with
96+
Contributions are very welcome. Tests can be run with
9797
[tox](https://tox.readthedocs.io/en/latest/), please ensure
9898
the coverage at least stays the same before you submit a pull request.
9999

@@ -106,18 +106,18 @@ History
106106
-------
107107
This is a fork of [pytest-ordering](https://github.com/ftobia/pytest-ordering).
108108
That project is not maintained anymore, and there are several helpful PRs
109-
that are now integrated into `pytest-order`. The idea and most of the
109+
that are now integrated into `pytest-order`. The idea and most of the
110110
initial code has been created by Frank Tobia, the author of that plugin, and
111111
[contributors](https://github.com/pytest-dev/pytest-order/blob/main/AUTHORS).
112112

113113
While derived from `pytest_ordering`, `pytest-order` is **not** compatible
114114
with `pytest-ordering` due to the changed marker name (`order` instead of
115-
`run`). Additional markers defined `pytest_ordering` are all integrated
115+
`run`). Additional markers defined `pytest_ordering` are all integrated
116116
into the `order` marker (for a rationale see also
117117
[this issue](https://github.com/ftobia/pytest-ordering/issues/38)).
118118

119119
Ordering relative to other tests and all the configuration options are not
120120
available in the released version of `pytest-ordering`.
121-
However, most of these features are derived from or inspired by
121+
However, most of these features are derived from or inspired by
122122
[issues](https://github.com/pytest-dev/pytest-order/blob/main/old_issues.md)
123123
and pull requests already existing in `pytest-ordering`.

docs/source/conf.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
from typing import List, Dict
32

43
# pytest-order documentation build configuration file, created by
@@ -192,10 +191,8 @@
192191
latex_elements: Dict[str, str] = {
193192
# The paper size ("letterpaper" or "a4paper").
194193
# "papersize": "letterpaper",
195-
196194
# The font size ("10pt", "11pt" or "12pt").
197195
# "pointsize": "10pt",
198-
199196
# Additional stuff for the LaTeX preamble.
200197
# "preamble": "",
201198
}

0 commit comments

Comments
 (0)