From 2ae75104192c39636a4002b3d6ec618a22f872f1 Mon Sep 17 00:00:00 2001 From: Gustavo Niemeyer Date: Tue, 1 Oct 2019 16:43:47 +0100 Subject: [PATCH 1/2] Let's go, Travis. --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..4b36d6a9d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: python +python: + - "3.6" + - "3.7" + +script: + - python3 -m unittest From 9a1da9a9a87fe7794bbd97738cf696572b6da6d6 Mon Sep 17 00:00:00 2001 From: Gustavo Niemeyer Date: Tue, 1 Oct 2019 16:54:23 +0100 Subject: [PATCH 2/2] Oops.. missing empty __init__ to make tests happy. --- test/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test/__init__.py diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 000000000..e69de29bb