From 4e2d04eca0147396092d2163bd8706fe497a8bf1 Mon Sep 17 00:00:00 2001 From: Matt Lyon Date: Wed, 9 Sep 2020 12:26:33 +0100 Subject: added tests, switched to lxml --- .travis.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yaml (limited to '.travis.yaml') diff --git a/.travis.yaml b/.travis.yaml new file mode 100644 index 0000000..9dc2570 --- /dev/null +++ b/.travis.yaml @@ -0,0 +1,13 @@ +language: python +python: + - "3.5" + - "3.6" + - "3.7" + - "3.8" + +# command to install dependencies +install: + - pip install coverage coveralls . +# command to run tests +script: "coverage run -m unittest discover -s '.tests/' -p 'test_*.py'" +after_success: "coveralls" -- cgit v1.2.3