aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yaml
diff options
context:
space:
mode:
authorMatt Lyon <matthewlyon18@gmail.com>2020-09-09 12:26:33 +0100
committerMatt Lyon <matthewlyon18@gmail.com>2020-09-09 12:26:33 +0100
commit4e2d04eca0147396092d2163bd8706fe497a8bf1 (patch)
treed401230004fba97c37abf71c93f4b3c9078f33b0 /.travis.yaml
parent1ad2946a5ff0902c8a028b7caec67037b8e61ce3 (diff)
downloadtpb-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.yaml13
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"