Open
Description
openedon Jul 17, 2024
Describe the bug
Your README requires pytest>=4.6. Installation only succeeded for pytest<=8.2.0.
To Reproduce
- pylint: 3.2.3
- pytest: 8.2.0
- pylint-pytest: 1.1.8
(add any relevant pylint/pytest plugin here)
Folder structure
$ tree -L 2
.
├── LICENSE
├── README.md
├── Text_IDs.csv
├── __pycache__
│ ├── conftest.cpython-310-pytest-8.2.0.pyc
│ └── conftest.cpython-310-pytest-8.2.2.pyc
├── clean_text.sh
├── conftest.py
├── env
│ ├── bin
│ ├── include
│ ├── lib
│ ├── lib64 -> lib
│ └── pyvenv.cfg
├── get_the_books.sh
├── makefile
├── pylintrc
├── pyproject.toml
├── pytest.ini
├── pytest.log
├── requirements.txt
├── src
│ ├── __init__.py
│ ├── __pycache__
│ └── pkg_tsl2b
└── tests
├── __pycache__
├── fixtures.py
├── test_cleaner.py
├── test_system.py
├── test_that_fails.py
├── test_tokenizer.py
├── test_word_counter.py
└── utilities.py
File content
pylint output with the plugin
(Optional) pytest output from fixture collection
$ pytest --fixtures --collect-only <path/to/test/module.py>
<paste output here, can omit the built-ins>
Expected behavior
pylint should work with pytest 8.2.2.
Additional context
Add any other context about the problem here.
Activity