Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.39 KB

File metadata and controls

36 lines (24 loc) · 1.39 KB

pypi run-tests Codacy Badge Coverage Status

Antares TOM Broker Module

This module adds Antares support to the TOM Toolkit. Using this module TOMs can query and listen to Antares streams.

Installation

Install the module into your TOM environment:

pip install tom-antares

Include the app in your INSTALLED_APPS in your TOM's settings.py:

INSTALLED_APPS = [
    ...
    'tom_antares',
]

Add tom_antares.antares.ANTARESBroker to the TOM_ALERT_CLASSES in your TOM's settings.py:

TOM_ALERT_CLASSES = [
    ...
    'tom_antares.antares.ANTARESBroker'
]

Running the tests

In order to run the tests, run the following in your virtualenv:

python tom_antares/tests/run_tests.py