mirror of
https://github.com/odoo/runbot.git
synced 2025-03-16 07:55:45 +07:00

To prep for the addition of the freeze wizard: * move projects out of `pull_requests.py` * then realize half the methods there have no relation to projects and move them to more relevant places in `pull_requests.py` * update corresponding crons (and tests using those crons) as the methods have changed model, and the cron definitions thus need to be updated * split update to labels out of sending feedback comments while at it: labels are not used much during tests so their manipulation can be avoided; and labels are not as urgent as feedback so the crons can be quite a bit slower * move the project view out of `mergebot.xml` as well
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
import pytest
|
|
import requests
|
|
|
|
@pytest.fixture()
|
|
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_stagings()
|
|
'runbot_merge.merge_cron',
|
|
# env['runbot_merge.project']._create_stagings()
|
|
'runbot_merge.staging_cron',
|
|
# env['runbot_merge.pull_requests']._check_linked_prs_statuses()
|
|
'runbot_merge.check_linked_prs_status',
|
|
# env['runbot_merge.pull_requests.feedback']._send()
|
|
'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'})],
|
|
})
|