Skip to content

Commit 081d711

Browse files
committed
1.1.1
1 parent 5804967 commit 081d711

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# Changelog
22

33
## [Unreleased]
4-
## Fixed
4+
5+
## [1.1.1] - 2021-04-12
6+
### Fixed
57
- Fix pytest fixture collection error on non-test modules
68

79
## [1.1.0] - 2021-04-11
8-
## Added
10+
### Added
911
- W6402 `useless-pytest-mark-decorator`: add warning for [using pytest.mark on fixtures](https://docs.pytest.org/en/stable/reference.html#marks) (thanks to @DKorytkin)
1012
- W6403 `deprecated-positional-argument-for-pytest-fixture`: add warning for [positional arguments to pytest.fixture()](https://docs.pytest.org/en/stable/deprecations.html#pytest-fixture-arguments-are-keyword-only) (thanks to @DKorytkin)
1113
- F6401 `cannot-enumerate-pytest-fixtures`: add fatal error when the plugin cannot enumerate and collect pytest fixtures for analysis (#27)
1214

1315
## [1.0.3] - 2021-03-13
14-
## Fixed
16+
### Fixed
1517
- Fix #13 regression caused by mangling `sys.modules`
1618

1719
## [1.0.2] - 2021-03-10

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ def awesome_fixture():
132132

133133
Raise when the plugin cannot enumerate and collect pytest fixtures for analysis
134134

135+
NOTE: this warning is only added to test modules (`test_*.py` / `*_test.py`)
136+
135137
```python
136138
import no_such_package # <- pylint-pytest plugin cannot enumerate and collect pytest fixtures
137139
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='pylint-pytest',
15-
version='1.1.0',
15+
version='1.1.1',
1616
author='Reverb Chu',
1717
author_email='[email protected]',
1818
maintainer='Reverb Chu',

0 commit comments

Comments
 (0)