We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd83fba commit 5097bf7Copy full SHA for 5097bf7
tests/prague/eip2537_bls_12_381_precompiles/conftest.py
@@ -1,6 +1,5 @@
1
"""Shared pytest definitions local to EIP-2537 tests."""
2
3
-from pathlib import Path
4
from typing import SupportsBytes
5
6
import pytest
@@ -13,13 +12,6 @@
13
12
from .spec import GAS_CALCULATION_FUNCTION_MAP
14
15
16
-def pytest_collection_modifyitems(config, items):
17
- """Add the `zkevm` marker to all tests in `./tests/prague/eip2537_bls_12_381_precompiles`."""
18
- for item in items:
19
- if Path(__file__).parent in Path(item.fspath).parents:
20
- item.add_marker(pytest.mark.zkevm)
21
-
22
23
@pytest.fixture
24
def vector_gas_value() -> int | None:
25
"""
0 commit comments