Skip to content

Commit

Permalink
Test changes towards getting them passing on Travis too
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Jan 7, 2015
1 parent c060601 commit 51546d7
Show file tree
Hide file tree
Showing 11 changed files with 159 additions and 167 deletions.
29 changes: 17 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
language: python
os:
- linux
- osx
- linux
- osx
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- '2.6'
- '2.7'
- '3.3'
- '3.4'
env:
global:
- secure: EUpWmrnhHKPkz9cOGbEEwhBtUBRqtQ775ck042B8/pI9ZZZghbKl3Jm8ahpfms3JiZcHMCG06MBREs1ISK/g2OfHKsdULCg5g3UFXteVQo769kwh/x4lniSbU2eipcN0s9Q/Ak5zStwTa5aNQ4FU/3zSgTDxi/OcDKGXDbVwHD8=
Expand All @@ -20,15 +20,20 @@ install:
- pip install -r requirements-opt.txt || echo "skipped"
- pip install coveralls
script:
- ./pretest
- travis_wait coverage run --source=jira setup.py test
- "./pretest"
- travis_wait python setup.py test
after_success:
coveralls
python setup.py build_sphinx upload_docs
- coveralls
- python setup.py build_sphinx upload_docs
branches:
only:
- master
notifications:
hipchat: 7d72ba6ba0bf07248f17e0a6a1a899@DevOps
#matrix:
# fast_finish: true
deploy:
provider: pypi
user: sorin
password:
secure: R/fYV3nMSrv444/HJeT0p5gBMg3pn1Zon4AR33DG94kG/ONerKg5hCxNL94FBU/uFmXpi8qGEeattNMDCes75LTZkLvTy6z16WZZHOOR625n/ZGzhNd8kXHAqng5JtX6uMx6ZxFAbG83ljrbssxum2FcFDGcIz7auQPMFnRUCY0=
distributions: "sdist bdist_wheel"

24 changes: 12 additions & 12 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,35 @@
JIRA Python Library
===================

.. image:: https://api.travis-ci.org/pycontribs/jira.svg?branch=master
:target: https://travis-ci.org/pycontribs/jira
.. image:: https://pypip.in/py_versions/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://img.shields.io/coveralls/pycontribs/jira.svg
:target: https://coveralls.io/r/pycontribs/jira
.. image:: https://pypip.in/license/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://pypip.in/download/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://pypip.in/version/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://pypip.in/egg/jira/badge.png?style=flat
.. image:: https://pypip.in/egg/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://pypip.in/wheel/jira/badge.png?style=flat
.. image:: https://pypip.in/wheel/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://pypip.in/license/jira/badge.png?style=flat
:target: https://pypi.python.org/pypi/jira/
.. |br| raw:: html

.. image:: https://api.travis-ci.org/pycontribs/jira.svg?branch=master
:target: https://travis-ci.org/pycontribs/jira

.. image:: https://pypip.in/status/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

.. image:: https://pypip.in/py_versions/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/
.. image:: https://img.shields.io/coveralls/pycontribs/jira.svg
:target: https://coveralls.io/r/pycontribs/jira

.. image:: https://pypip.in/format/jira/badge.svg?style=flat
:target: https://pypi.python.org/pypi/jira/

This library eases the use of the JIRA REST API from Python

Expand Down
2 changes: 2 additions & 0 deletions jira/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@

from .version import __version__
from .config import get_jira
from .client import JIRA, Priority, Comment, Worklog, Watchers
from .utils import JIRAError

0 comments on commit 51546d7

Please sign in to comment.