From 1d2c9a7411fc7753b186a235d15ee5583b2da6db Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 25 Sep 2018 16:01:03 -0400 Subject: [PATCH] travis --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fd8a178 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +sudo: required +dist: xenial +language: python +python: "3.7" + +before_install: + - pip install pylint coverage + - pip install -e . + - pylint txupnp + +script: + - HOME=/tmp coverage run --source=txupnp -m twisted.trial tests + +after_success: + - bash <(curl -s https://codecov.io/bash)