From: Rob Golding Date: Sun, 3 Nov 2013 21:18:18 +0000 (+0000) Subject: Add .travis.yml X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/2a86715582836a3225790b8fc7b964dcc12db6f6?hp=a56304e62b2363d77510bc5727c5a4ba82f4549f Add .travis.yml --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..945c15d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" +install: "pip install ." +script: "python setup.py test" diff --git a/setup.py b/setup.py index 2d12729..039d1d9 100644 --- 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',