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

Commit ffb557f

Browse files
committed
add: make testnovm
1 parent 78f3d27 commit ffb557f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ help:
66
@echo "clean-pyc - remove Python file artifacts"
77
@echo "clean-test - remove test and coverage artifacts"
88
@echo "lint - check style with flake8"
9-
@echo "test - run tests quickly with the default Python"
10-
@echo "testtb - run tests quickly with tracebacks"
9+
@echo "test - run tests with the default Python"
10+
@echo "testnovm - run tests except test_vm"
11+
@echo "testtb - run tests with tracebacks"
1112
@echo "test-all - run tests on every Python version with tox"
1213
@echo "coverage - check code coverage quickly with the default Python"
1314
@echo "docs - generate Sphinx HTML documentation, including API docs"
@@ -38,6 +39,9 @@ lint:
3839
test:
3940
py.test --tb=no ethereum/tests/
4041

42+
testnovm:
43+
py.test --tb=no ethereum/tests/ --ignore=ethereum/tests/test_vm.py
44+
4145
testtb:
4246
python setup.py test
4347

0 commit comments

Comments
 (0)