Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
reverbc committed Apr 13, 2021
1 parent 5804967 commit 081d711
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# Changelog

## [Unreleased]
## Fixed

## [1.1.1] - 2021-04-12
### Fixed
- Fix pytest fixture collection error on non-test modules

## [1.1.0] - 2021-04-11
## Added
### Added
- 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)
- 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)
- F6401 `cannot-enumerate-pytest-fixtures`: add fatal error when the plugin cannot enumerate and collect pytest fixtures for analysis (#27)

## [1.0.3] - 2021-03-13
## Fixed
### Fixed
- Fix #13 regression caused by mangling `sys.modules`

## [1.0.2] - 2021-03-10
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ def awesome_fixture():

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

NOTE: this warning is only added to test modules (`test_*.py` / `*_test.py`)

```python
import no_such_package # <- pylint-pytest plugin cannot enumerate and collect pytest fixtures
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='pylint-pytest',
version='1.1.0',
version='1.1.1',
author='Reverb Chu',
author_email='[email protected]',
maintainer='Reverb Chu',
Expand Down

0 comments on commit 081d711

Please sign in to comment.