Skip to content

Commit 0c5e09e

Browse files
committed
revert(benchmark): changes done to pyproject.toml
1 parent 77e6393 commit 0c5e09e

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

pyproject.toml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ docs = [
7878
"mkdocstrings-python>=1.0.0,<2",
7979
"pillow>=10.0.1,<11",
8080
"pyspelling>=2.8.2,<3",
81-
"lxml>=6.0.0,<7", # needs to be >= 6.0 for pypy
81+
"lxml>=6.0.0,<7", # needs to be >= 6.0 for pypy
8282
"setuptools==78.0.2",
8383
]
8484

@@ -127,13 +127,10 @@ ethereum_test_forks = ["forks/contracts/*.bin"]
127127
line-length = 99
128128

129129
[tool.ruff.lint]
130-
select = ["E", "F", "B", "W", "I", "A", "N", "D", "C", "ARG001"]
130+
select = ["E", "F", "B", "W", "I", "A", "N", "D", "C"]
131131
fixable = ["I", "B", "E", "F", "W", "D", "C"]
132132
ignore = ["D205", "D203", "D212", "D415", "C420", "C901"]
133133

134-
[tool.ruff.lint.per-file-ignores]
135-
"tests/*" = ["ARG001"] # TODO: ethereum/execution-spec-tests#2188
136-
137134
[tool.mypy]
138135
disable_error_code = ["import-untyped"]
139136
mypy_path = ["src", "$MYPY_CONFIG_FILE_DIR/stubs"]
@@ -160,15 +157,13 @@ ignore-words-list = "ingenuous"
160157
[tool.pytest.ini_options]
161158
console_output_style = "count"
162159
minversion = "7.0"
163-
python_files = [
164-
"test_*.py"
165-
]
166-
testpaths = [
167-
"src"
168-
]
160+
python_files = ["test_*.py"]
161+
testpaths = ["src"]
169162
addopts = [
170-
"-p", "pytester",
171-
"-p", "pytest_plugins.eels_resolver",
163+
"-p",
164+
"pytester",
165+
"-p",
166+
"pytest_plugins.eels_resolver",
172167
"--ignore=src/pytest_plugins/consume/test_cache.py",
173168
"--ignore=src/pytest_plugins/consume/direct/",
174169
"--ignore=src/pytest_plugins/consume/simulators/",

0 commit comments

Comments
 (0)