]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add .travis.yml
authorRob Golding <rob@robgolding.com>
Sun, 3 Nov 2013 21:18:18 +0000 (21:18 +0000)
committerRob Golding <rob@robgolding.com>
Sun, 3 Nov 2013 21:18:18 +0000 (21:18 +0000)
.travis.yml [new file with mode: 0644]
setup.py

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..945c15d
--- /dev/null
@@ -0,0 +1,8 @@
+language: python
+python:
+    - "2.6"
+    - "2.7"
+    - "3.2"
+    - "3.3"
+install: "pip install ."
+script: "python setup.py test"
index 2d1272973e628aeb692f99fd692739e45cbee126..039d1d975a2b62d2291e47fb870b4d0dbf490447 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -12,6 +12,7 @@ setup(
     download_url='https://github.com/robgolding63/tasklib/downloads',
     packages=find_packages(),
     include_package_data=True,
+    test_suite='tasklib.tests',
     classifiers=[
         'Development Status :: 3 - Alpha',
         'License :: OSI Approved :: BSD License',