summaryrefslogtreecommitdiff
path: root/src/buildstream/testing/_utils/__init__.py
blob: 575226e229675d1ddd54fdafd1308a25769bd38c (plain)
1
2
3
4
5
6
7
8
9
10
import os

from buildstream import _yaml
from .junction import generate_junction


def configure_project(path, config):
    config['name'] = 'test'
    config['element-path'] = 'elements'
    _yaml.roundtrip_dump(config, os.path.join(path, 'project.conf'))