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

1. if we try to stage a PR and realize we'd stored / checked the wrong head, cancel the staging and notify the PR 2. provide a command to forcefully update pr heads (or at least check that a PR's head is up to date) Closes #241
41 lines
1.1 KiB
Python
41 lines
1.1 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
|
|
|
|
@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',
|
|
})
|