File: loader_sample.py

package info (click to toggle)
doit 0.36.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,704 kB
  • sloc: python: 11,863; makefile: 33; ansic: 14; javascript: 3; sh: 1
file content (16 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

DOIT_CONFIG = {'verbose': 2}


def task_xxx1():
    """task doc"""
    return {
        'actions': ['do nothing'],
        'params': [{'name':'p1', 'default':'1', 'short':'p'}],
        }

def task_yyy2():
    return {'actions':None}

def bad_seed(): # pragma: no cover
    pass