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

Converge the pytest setups of runbot_merge and forwardport a bit more (the goal is obviously to eventually share the infrastructure so they run the same way).
9 lines
128 B
Python
9 lines
128 B
Python
import uuid
|
|
import pytest
|
|
|
|
pytest_plugins = ["local"]
|
|
|
|
@pytest.fixture(scope='session')
|
|
def module():
|
|
return 'runbot_merge'
|