-
Notifications
You must be signed in to change notification settings - Fork 373
Fix/issue 1654 #1740
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: forks/osaka
Are you sure you want to change the base?
Fix/issue 1654 #1740
Changes from 14 commits
a40f0b0
069a86b
3353710
6af6ed8
fa789d3
85e0f2d
b1b54fa
7f2af80
3d7f3fe
95f57ad
6f53791
d8f0090
5b5b64b
1a5ad07
c417c91
cf77db7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
|
|
@@ -92,12 +92,7 @@ def test_berlin_one(state_test: StateTestFiller) -> None: | |
| str(testdir.tmpdir / "checklists"), | ||
| str(tests_dir), | ||
| ) | ||
| result.assert_outcomes( | ||
| passed=0, | ||
| failed=0, | ||
| skipped=0, | ||
| errors=0, | ||
| ) | ||
| result.assert_outcomes(errors=0) | ||
|
||
|
|
||
| # Check that checklists were generated | ||
| checklist_dir = testdir.tmpdir / "checklists" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use
.parents[...]instead of chaining so manyparenttraversals together?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes using parents index will be much better. but i went with chained calls cause in previous code they were using it