This repository was archived by the owner on May 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,11 @@ install:
27
27
- travis_retry pip install tox
28
28
- travis_retry pip install coverage
29
29
- travis_retry pip install flake8
30
+ - travis_retry python setup.py install
31
+ - travis_retry pip install -r dev_requirements.txt
30
32
script :
31
- make lint-minimal
33
+ - make lint-minimal
34
+ - make test-minimal
32
35
# XXX: For now we're only performing minimal CI checks as most tests are
33
36
# broken. Tests will be individually added here as they're fixed.
34
37
# - if [ -d .tox/$TOX_ENV/ ]; then cd .tox/$TOX_ENV && coverage erase; fi;
Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ lint-minimal:
45
45
test :
46
46
py.test --tb=no ethereum/tests/
47
47
48
+ test-minimal :
49
+ py.test ethereum/tests/test_abi.py ethereum/tests/test_bloom.py ethereum/tests/test_chain.py ethereum/tests/test_compress.py ethereum/tests/test_db.py ethereum/tests/test_difficulty.py ethereum/tests/test_opcodes.py ethereum/tests/test_trie_next_prev.py ethereum/tests/test_utils.py
50
+
48
51
testnovm :
49
52
py.test --tb=no ethereum/tests/ --ignore=ethereum/tests/test_vm.py
50
53
You can’t perform that action at this time.
0 commit comments