diff options
author | Matt Lyon <matthewlyon18@gmail.com> | 2020-09-09 12:26:33 +0100 |
---|---|---|
committer | Matt Lyon <matthewlyon18@gmail.com> | 2020-09-09 12:26:33 +0100 |
commit | 4e2d04eca0147396092d2163bd8706fe497a8bf1 (patch) | |
tree | d401230004fba97c37abf71c93f4b3c9078f33b0 /.travis.yaml | |
parent | 1ad2946a5ff0902c8a028b7caec67037b8e61ce3 (diff) | |
download | tpb-lite-4e2d04eca0147396092d2163bd8706fe497a8bf1.tar.gz tpb-lite-4e2d04eca0147396092d2163bd8706fe497a8bf1.tar.bz2 tpb-lite-4e2d04eca0147396092d2163bd8706fe497a8bf1.zip |
added tests, switched to lxml
Diffstat (limited to '.travis.yaml')
-rw-r--r-- | .travis.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
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" |