Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-06-17 13:53:32 +0400
committerChris Rebert <code@rebertia.com>2014-06-17 13:54:56 +0400
commitb78ccdda444f358f864e0ede8bb1cc6bdac1ae09 (patch)
treec8daeeb6be53b6cce5fae87ed3380904d992c21e /.travis.yml
parentcf7d384031c5106446ab465599f6a9b4cb124eb3 (diff)
initial Travis config
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..3daf522
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,9 @@
+language: python
+python:
+ - "2.7"
+install: "pip install -r rorschach_webhook/requirements.txt"
+before_script: "pip install pep8 pylint"
+script:
+ - "pep8"
+ - "pylint --rcfile=pylint.rc rorschach_webhook/rorschach"
+ - "py.test"