cleaver
cleaver copied to clipboard
Bloody simple A/B testing for Python WSGI applications
The following test fails: ``` class TestSQLAlchemy(TestCase): def setUp(self): self.b = SQLAlchemyBackend() def test_save_multiple_experiments(self): b = self.b b.save_experiment('background_color', ('black', 'white', 'grey')) b.save_experiment('foreground_color', ('black', 'white', 'grey')) ``` This raises an exception...
I'm making this PR just to have a place for discussion -- its incomplete because it does the `RedisBackend` and `SQLAlchemyBackend` behave differently at the moment. Also, depending on the...