This repository was archived by the owner on May 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 4
4
- TOX_ENV=py27
5
5
6
6
install :
7
- - pip install tox
7
+ - pip install tox coveralls
8
+ - pip install -r requirements.txt
8
9
9
10
script :
10
- - tox -e $TOX_ENV
11
+ - coverage run --source ethereum setup.py test
12
+ # - tox -e $TOX_ENV
13
+
14
+ after_success :
15
+ - coveralls
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def run_tests(self):
34
34
install_requires_replacements = {
35
35
'https://github.com/ethereum/pyrlp/tarball/develop' : 'rlp>=0.3.7' ,
36
36
'https://github.com/ethereum/serpent/tarball/develop' : 'ethereum-serpent>=1.8.1' ,
37
- 'https://github.com/ethereum/ethash/tarball/master' : 'pyethash>=23 ' }
37
+ 'https://github.com/ethereum/ethash/tarball/master' : 'pyethash' }
38
38
39
39
install_requires = [install_requires_replacements .get (r , r ) for r in install_requires ]
40
40
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ envlist = py27
5
5
[testenv]
6
6
setenv =
7
7
PYTHONPATH = {toxinidir}:{toxinidir}/ethereum
8
- commands = python setup.py test
9
-
8
+ # commands = python setup.py test
9
+ commands = coverage run -- source =pyethereum setup.py test
10
10
deps =
11
11
-r{toxinidir}/requirements.txt
You can’t perform that action at this time.
0 commit comments