From dd6fded82dcf5eb43a63bba8d490ab583236246d Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Mon, 24 Aug 2015 14:53:29 +0300 Subject: [PATCH] travis: test without trezorlib --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..75f1e02 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +sudo: false +language: python +python: + - "2.7" + +install: + - pip install ecdsa # test without trezorlib for now + - pip install pylint coverage pep8 + +script: + - pep8 trezor_agent + - pylint --report=no --rcfile .pylintrc trezor_agent + - coverage run --source trezor_agent/ -m py.test -v + +after_success: + - coverage report +