mirror of
https://github.com/odoo/runbot.git
synced 2025-04-13 22:00:55 +07:00

The fw-bot testing API should improve the perfs of mergebot tests somewhat (less waiting around for instance). The code has been updated to the bare minimum (context-managing repos, change to PRs and replacing rolenames by explicit token provisions) but extra facilities were used to avoid changing *everything* e.g. make_commit (singular), automatic generation of PR refs, ... The tests should eventually be updated to remove these. Also remove the local fake / mock. Being so much faster is a huge draw, but I don't really want to spend more time updating it, especially when fwbot doesn't get to take advantage. A local / lightweight fake github (as an external service over http) might eventually be a good idea though, and more applicable (including to third-parties).
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
import pytest
|
|
import requests
|
|
|
|
@pytest.fixture(scope='session')
|
|
def module():
|
|
return 'runbot_merge'
|
|
|
|
@pytest.fixture
|
|
def page(port):
|
|
s = requests.Session()
|
|
def get(url):
|
|
r = s.get('http://localhost:{}{}'.format(port, url))
|
|
r.raise_for_status()
|
|
return r.content
|
|
return get
|
|
|
|
# env['runbot_merge.project']._check_fetch()
|
|
# runbot_merge.fetch_prs_cron
|
|
@pytest.fixture
|
|
def default_crons():
|
|
return [
|
|
# env['runbot_merge.project']._check_fetch()
|
|
# 'runbot_merge.fetch_prs_cron',
|
|
# env['runbot_merge.commit']._notify()
|
|
'runbot_merge.process_updated_commits',
|
|
# env['runbot_merge.project']._check_progress()
|
|
'runbot_merge.merge_cron',
|
|
# env['runbot_merge.pull_requests']._check_linked_prs_statuses()
|
|
'runbot_merge.check_linked_prs_status',
|
|
# env['runbot_merge.project']._send_feedback()
|
|
'runbot_merge.feedback_cron',
|
|
]
|
|
|
|
@pytest.fixture
|
|
def project(env, config):
|
|
return env['runbot_merge.project'].create({
|
|
'name': 'odoo',
|
|
'github_token': config['github']['token'],
|
|
'github_prefix': 'hansen',
|
|
'branch_ids': [(0, 0, {'name': 'master'})],
|
|
'required_statuses': 'legal/cla,ci/runbot',
|
|
}) |