aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatt <32886639+mattlyon93@users.noreply.github.com>2020-09-09 21:32:31 +1000
committerGitHub <noreply@github.com>2020-09-09 21:32:31 +1000
commitb655b700e99f0fcdccb41e956f66f65e698714e2 (patch)
tree2b1d0e9a2746fc5870dc1999f7bcfac3576f38eb /.travis.yml
parent915e7d581289c8ee1fd6df948b6b7c8535e5db89 (diff)
downloadtpb-lite-b655b700e99f0fcdccb41e956f66f65e698714e2.tar.gz
tpb-lite-b655b700e99f0fcdccb41e956f66f65e698714e2.tar.bz2
tpb-lite-b655b700e99f0fcdccb41e956f66f65e698714e2.zip
Rename .travis.yaml to .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..9dc2570
--- /dev/null
+++ b/.travis.yml
@@ -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"