Revert "Ruff: Add pylint (#1277)" (#1283)

This reverts commit 4c00b1683f.
This commit is contained in:
Mariana Meireles
2023-03-14 17:46:13 +01:00
committed by GitHub
parent 4c00b1683f
commit 716254e655
4 changed files with 7 additions and 8 deletions

View File

@@ -79,8 +79,8 @@ def _set_version_info(version_from_interpreter: str):
YYYY.MM.m(m).releaselevel
Year, Month, and Minor should be integers; releaselevel can be any string
"""
global __version__ # noqa: PLW0603
global version_info # noqa: PLW0603
global __version__
global version_info
__version__ = version_from_interpreter

View File

@@ -78,9 +78,10 @@ def pytest_configure(config):
- cd tests/integration; pytest
"""
pytest.fail(msg)
elif config.option.dev:
config.option.headed = True
config.option.no_fake_server = True
else:
if config.option.dev:
config.option.headed = True
config.option.no_fake_server = True
@pytest.fixture(scope="session")