Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies = [
test = [
"pytest-cov==6.2.1",
"pytest-xdist==3.7.0",
"pytest==8.4.0",
"pytest==8.4.1",
]
lint = [
"codespell==2.4.1",
Expand All @@ -44,13 +44,13 @@ lint = [
"mdformat-toc==0.3.0",
"mdformat==0.7.22",
"mypy==1.16.1",
"ruff==0.11.13",
"ruff==0.12.0",
]
generator = [
"filelock==3.18.0",
"minizinc==0.10.0",
"pathos==0.3.4",
"pytest==8.4.0",
"pytest==8.4.1",
"python-snappy==0.7.3",
"rich==14.0.0",
"tqdm==4.67.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/core/pyspec/eth2spec/test/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pytest

from eth2spec.test import context
from eth2spec.test.helpers.constants import ALL_PHASES, ALLOWED_TEST_RUNNER_FORKS
from eth2spec.utils import bls as bls_utils
Expand All @@ -17,8 +19,6 @@ def module_exists(module_name):

def fixture(*args, **kwargs):
if module_exists("pytest"):
import pytest

return pytest.fixture(*args, **kwargs)
else:

Expand Down
2 changes: 1 addition & 1 deletion tests/infra/test_md_to_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pytest

from pysetup.md_to_spec import MarkdownToSpec
from pysetup.typing import SpecObject


@pytest.fixture
Expand Down Expand Up @@ -49,7 +50,6 @@ def test_run_returns_spec_object(dummy_file, dummy_preset, dummy_config):
)
spec_obj = m2s.run()
# Check that the result is of the expected type
from pysetup.typing import SpecObject

assert isinstance(spec_obj, SpecObject)

Expand Down