Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from execution_testing.checklists.eip_checklist import EIPChecklist

TEMPLATE_PATH = (
Path(__file__).parent.parent.parent.parent
Path(__file__).parents[6]
/ "docs"
/ "writing_tests"
/ "checklist_templates"
Expand Down Expand Up @@ -60,7 +60,7 @@ def get_all_checklist_ids(obj: Any) -> Set[str]:
return ids


@pytest.mark.skip(reason="Skipping test until ./docs/ folder is subtree'd")

def test_checklist_template_consistency() -> None:
"""
Test that all IDs in markdown template match EIPChecklist class exactly.
Expand Down Expand Up @@ -101,7 +101,7 @@ def test_checklist_template_consistency() -> None:
pytest.fail(error_message)


@pytest.mark.skip(reason="Skipping test until ./docs/ folder is subtree'd")

def test_checklist_template_exists() -> None:
"""Test that the checklist template file exists."""
assert TEMPLATE_PATH.exists(), (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
PERCENTAGE_LINE = (
"| TOTAL_CHECKLIST_ITEMS | COVERED_CHECKLIST_ITEMS | PERCENTAGE |"
)
TEMPLATE_PATH = Path(
# TODO: add better repo root detection
TEMPLATE_PATH = (
Path(__file__).parents[8]
/ "docs"
/ "writing_tests"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import pytest


@pytest.mark.skip(reason="S kipping test until ./docs/ folder is subtree'd")

def test_eip_checklist_collection(testdir: Any) -> None:
"""Test that checklist markers are collected correctly."""
# Create the test in an EIP-specific directory
Expand Down
Loading