From cbad0c99398c73b722ad4df0c1072e87a3158b23 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 9 Dec 2019 17:21:33 +0100 Subject: [PATCH] Add initial Travis CI Signed-off-by: Stefan Weil --- .travis.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d967f20 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +# Travis CI configuration for sbb_textline_detector + +dist: xenial # required for Python >= 3.7 +language: python +python: + # sbb_textline_detector requires Python 3.6 or newer + - "3.6" + - "3.7" + # tensorflow-gpu<2.0 is not available for Python 3.8 + +install: + - pip install -U pip + - pip install . + +script: + - ocrd-sbb-textline-detector --help