From 2c49f924ef5540b66ff34c6076f34dadfb41e324 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Tue, 2 Jun 2020 18:29:08 +0200 Subject: [PATCH 1/2] Add travis file --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4285725 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +dist: xenial +python: + - "3.8" + +install: + - pip install mypy + +script: + - make test From 5d820459563779d9b65e954ad483a671d322d687 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Tue, 2 Jun 2020 18:32:47 +0200 Subject: [PATCH 2/2] Install xtermcolor --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 4285725..c5fb91b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: install: - pip install mypy + - pip install xtermcolor script: - make test