From 17100b2a26681f3f145ded1361b2b480635c0709 Mon Sep 17 00:00:00 2001 From: Rico Tiongson Date: Mon, 4 Mar 2019 13:26:48 +0800 Subject: [PATCH] Add initial travis configuration --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..52438f4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "3.6" + - "3.7" + - "3.8-dev" +addons: + apt: + packages: + - libxdo-dev + - libinput-tools +install: + - pip install . -vv +script: + - python setup.py test -vv