]> git.parisson.com Git - telemeta.git/commitdiff
add travis scripts
authoryomguy <yomguy@parisson.com>
Tue, 8 Jan 2013 09:05:48 +0000 (10:05 +0100)
committeryomguy <yomguy@parisson.com>
Tue, 8 Jan 2013 09:05:48 +0000 (10:05 +0100)
.travis.yml [new file with mode: 0644]
requirements.txt [new file with mode: 0644]
telemeta/views/item.py

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..4bc018b
--- /dev/null
@@ -0,0 +1,12 @@
+language: python
+python:
+  - "2.6"
+  - "2.7"
+# command to install dependencies
+install: 
+ - "pip install -r requirements.txt --use-mirrors"
+
+# command to run tests
+script:
+ - "python setup.py install"
+# - "python tests/testcomponent.py"
diff --git a/requirements.txt b/requirements.txt
new file mode 100644 (file)
index 0000000..49fe098
--- /dev/null
@@ -0,0 +1 @@
+setuptools
index 018d3a24d05399694e4da7ca3334ecb810ab7784..0b4aff73045a88f076ba9aa47563a5438e4e6d70 100644 (file)
@@ -39,7 +39,7 @@ from telemeta.views.core import *
 
 
 class ItemView(object):
-    """Provide Collections web UI methods"""
+    """Provide Item web UI methods"""
 
     graphers = timeside.core.processors(timeside.api.IGrapher)
     decoders = timeside.core.processors(timeside.api.IDecoder)