Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 40f2606

Browse files
committed
xfailing test stubs for not yet implemented PoW and BC json tests
1 parent da57128 commit 40f2606

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

ethereum/tests/test_blockchain.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import os
2+
import pytest
3+
import ethereum.testutils as testutils
4+
5+
fixtures = testutils.get_tests_from_file_or_dir(
6+
os.path.join(testutils.fixture_path, 'BlockChainTests'))
7+
8+
9+
@pytest.mark.xfail
10+
def test_blockchain():
11+
raise Exception('not implemented error')

ethereum/tests/test_ethash.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import os
2+
import pytest
3+
import ethereum.testutils as testutils
4+
5+
fixtures = testutils.get_tests_from_file_or_dir(
6+
os.path.join(testutils.fixture_path, 'PoWTests'))
7+
8+
9+
@pytest.mark.xfail
10+
def test_pow():
11+
raise Exception('not implemented error')

0 commit comments

Comments
 (0)