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
Empty file.
8 changes: 1 addition & 7 deletions tests/generators/transition/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
test_slashing as test_altair_slashing,
test_operations as test_altair_operations,
)
from eth2spec.test.bellatrix.transition import (
test_transition as test_bellatrix_transition,
)


def create_provider(tests_src, preset_name: str, pre_fork_name: str, post_fork_name: str) -> gen_typing.TestProvider:
Expand Down Expand Up @@ -47,10 +44,7 @@ def cases_fn() -> Iterable[gen_typing.TestCase]:
test_altair_slashing,
test_altair_operations,
)
bellatrix_tests = (
test_bellatrix_transition,
)
all_tests = altair_tests + bellatrix_tests
all_tests = altair_tests
for transition_test_module in all_tests:
for pre_fork, post_fork in ALL_PRE_POST_FORKS:
gen_runner.run_generator("transition", [
Expand Down