* Move algorithm into ManticoreEVM * Rm buggy unused line * Initial eth testing setup * Check for overflow in mul also * clarifying comment * Install solc for travis * Add sudo * x * Rm travis_retry, since we rarely actually use it, and it's not available in this script for some reason * Check for specific findings * Fix test * Clean up transaction firing logic * Use less strict check, better for floating point
21 lines
327 B
YAML
21 lines
327 B
YAML
branches:
|
|
only:
|
|
- master
|
|
- /^(?!wip-).+$/
|
|
language: python
|
|
cache:
|
|
pip: true
|
|
directories:
|
|
- $HOME/virtualenv/python2.7.13/lib/python2.7/site-packages
|
|
- $HOME/virtualenv/python2.7.13/bin/
|
|
dist: trusty
|
|
sudo: required
|
|
os:
|
|
- linux
|
|
python:
|
|
- 2.7.13
|
|
install:
|
|
- scripts/travis_install.sh
|
|
script:
|
|
- scripts/travis_test.sh
|