At this moment all tests are still run just with mysql as backend, all it's need to change:
@pytest.mark.parametrize('backend', ['mysql'])
to
@pytest.mark.parametrize('backend', ['mysql', 'postgresql'])
And test will be executed twice
At this moment all tests are still run just with mysql as backend, all it's need to change:
@pytest.mark.parametrize('backend', ['mysql'])
to
@pytest.mark.parametrize('backend', ['mysql', 'postgresql'])
And test will be executed twice