From 2009160ff27d8e9daa22355692b6b207c09484e6 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 9 Jan 2016 17:46:07 +0200 Subject: [PATCH] Revert "travis: test with tox" This reverts commit 3d8072522cbd7ac1abca44e64dec0749ff527eae. --- .travis.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c6af91..81a35ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,16 @@ language: python python: - "2.7" - "3.4" -install: pip install tox-travis -script: tox \ No newline at end of file + +install: + - pip install ecdsa ed25519 # test without trezorlib for now + - pip install pylint coverage pep8 + +script: + - pep8 trezor_agent + - pylint --reports=no --rcfile .pylintrc trezor_agent + - coverage run --source trezor_agent/ -m py.test -v + +after_success: + - coverage report +