Blame view

DEV.md 493 Bytes
f8a9c1ff   hitier   How to add a new ...
1
2
3
4
5
6
7
# Developer's Manual

## Add new input sources

* go to config.yml
    1. add new entry to 'inputs' section
    2. inside each target, add entry in the 'models' sub-section
1fd5c7a5   hitier   Add pytest enviro...
8
9
10
11
* possible to set default input in the defaults.input_slug parameter

## Testing

1db3095f   hitier   Update dependencies
12
13
14
    # prerequisites
    pip install -r requirements-tests.txt

fe6e8f9b   hitier   First test runs
15
    # basic
1fd5c7a5   hitier   Add pytest enviro...
16
    PYTHONPATH=. pytest
fe6e8f9b   hitier   First test runs
17
18
19
20
21
22

    # debug messages enabled
    DEBUG=true PYTHONPATH=. pytest

    # output to stderr activated
    DEBUG=true PYTHONPATH=. pytest -rP