Add travis changes

This commit is contained in:
Aaron Suarez 2019-05-26 00:52:16 -05:00
parent 729409328a
commit 9b28c98dca
2 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,8 @@ sudo: true
language: python language: python
python: python:
- 3.6.5 - 3.6.5
services:
- docker
install: install:
- sudo apt-get -y update - sudo apt-get -y update
- sudo apt-get -y install build-essential gcc-multilib cmake python3-pip python3-setuptools libffi-dev python3-nose - sudo apt-get -y install build-essential gcc-multilib cmake python3-pip python3-setuptools libffi-dev python3-nose
@ -42,4 +44,6 @@ script:
- if [ $TASK = PRIMES ]; then nosetests3 tests/test_primes.py ; fi - if [ $TASK = PRIMES ]; then nosetests3 tests/test_primes.py ; fi
#- if [ $TASK = STREAMINGANDFORMATTING ]; then nosetests3 tests/test_streamingandformatting.py ; fi #- if [ $TASK = STREAMINGANDFORMATTING ]; then nosetests3 tests/test_streamingandformatting.py ; fi
- if [ $TASK = TAKEOVER ]; then nosetests3 tests/test_takeover.py ; fi - if [ $TASK = TAKEOVER ]; then nosetests3 tests/test_takeover.py ; fi
after_success:
- bash push/run.sh

View File

@ -30,7 +30,7 @@ setuptools.setup(
author_email="peter@trailofbits.com", author_email="peter@trailofbits.com",
license="Apache-2.0", license="Apache-2.0",
keywords="tdd testing symbolic execution", keywords="tdd testing symbolic execution",
install_requires=['claripy', 'angr', 'manticore'], install_requires=['angr', 'manticore'],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'deepstate = deepstate.main_manticore:main', 'deepstate = deepstate.main_manticore:main',