diff --git a/.travis.yml b/.travis.yml index 0408502..cbb5abc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ language: python python: - "2.6" - "2.7" + - "3.3" + - "3.4" + - "3.5" # command to install dependencies # need "python setup.py install" to install resync so that client tests work install: @@ -9,4 +12,10 @@ install: - pip install python-dateutil - python setup.py install # command to run tests -script: py.test +script: + - py.test +# - pep257 *.py resync/*.py + - rst-lint README + - coverage run --source=resync setup.py test +after_success: + - coveralls \ No newline at end of file diff --git a/README b/README index faac868..729f4ed 100644 --- a/README +++ b/README @@ -80,8 +80,7 @@ path (perhaps ``/usr/local/bin`` or ``/usr/bin`` depending on your system). The source code is maintained on `Github `_ and there may be branches/versions available there that are not -yet packaged for `PyPI -`_. +yet packaged for PyPI. See also -------- diff --git a/setup.py b/setup.py index e67d682..bd23c82 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +"""Setup for ResurceSync library and client implementation.""" from setuptools import setup # setuptools used instead of distutils.core so that # dependencies can be handled automatically