aboutsummaryrefslogtreecommitdiff
blob: 9c157b9bc22d29b4da63f0b441f4d4a92c897342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
merge_driver_ekeyword_py = configure_file(
    input : 'merge_driver_ekeyword.py',
    output : 'merge_driver_ekeyword.py',
    configuration : conf_data
)

py.install_sources(
    [
        '__init__.py',
        merge_driver_ekeyword_py,
        'test_merge_driver_ekeyword.py',
    ],
    subdir : 'gentoolkit/merge_driver_ekeyword'
)

install_data(
    [
        'pytest.ini',
    ],
    install_dir : py.get_install_dir() / 'gentoolkit' / 'merge_driver_ekeyword'
)

subdir('tests')