Metadata-Version: 2.1
Name: nose-launchable
Version: 0.1.2
Summary: A nose plugin to interact with Launchable API
Home-page: https://github.com/launchableinc/nose-launchable
Author: Launchable team
Author-email: info@launchableinc.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Dist: nose (>=1.0.0)
Requires-Dist: boto3 (>=1.0.0)
Requires-Dist: requests (>=2.0.0)

nose-launchable
===============

A nose plugin to interact with
`Launchable <https://www.launchableinc.com/>`__ API.

Install
-------

::

   $ pip install nose-launchable

Usage
-----

::

   $ nosetests --launchable --launchable-build-number <build number>

In addition to specifying the ``--launchable`` flag, you need to set the
following environment variables in your environment. These values should
be provided from Launchable.

+-----------------------------------+-----------------------------------+
| Key                               | Description                       |
+===================================+===================================+
| LAUNCHABLE_BASE_URL               | A Launchable API URL. Default is  |
|                                   | ``https:                          |
|                                   | //api.mercury.launchableinc.com`` |
+-----------------------------------+-----------------------------------+
| LAUNCHABLE_BUILD_NUMBER           | A CI/CD build number              |
+-----------------------------------+-----------------------------------+
| LAUNCHABLE_DEBUG                  | Prints out debug logs             |
+-----------------------------------+-----------------------------------+
| LAUNCHABLE_TOKEN                  | A token to access Launchable API  |
+-----------------------------------+-----------------------------------+

Development
-----------

Pull requests are always appreciated. If you want to see whether your
changes work as expected, run the following command to install the
plugin locally.

.. code:: bash

   $ python setup.py develop


