Permalink
Browse files
Added .travis.yml to setup CI testing
- Loading branch information...
Showing
with
10 additions
and
1 deletion.
-
+2
−1
.gitignore
-
+8
−0
.travis.yml
|
@@ -3,7 +3,8 @@ |
|
|
*.pyc
|
|
|
*~
|
|
|
*.swp
|
|
|
-
|
|
|
+.project
|
|
|
+.pydevproject
|
|
|
build
|
|
|
dist
|
|
|
mrjob.egg-info
|
|
|
@@ -0,0 +1,8 @@ |
|
|
+language: python
|
|
|
+python:
|
|
|
+ - "2.6"
|
|
|
+# command to install dependencies
|
|
|
+install:
|
|
|
+ - "pip install . --use-mirrors"
|
|
|
+# command to run tests
|
|
|
+script: python setup.py test
|
0 comments on commit
3a1a41b