callejerog

Results 3 comments of callejerog

I solved this way: In my user_model: ` wrong_pwd_counter = db.Column(db.Integer) ` and ` class CustomLoginForm(LoginForm): def validate(self): response = True if not super(LoginForm, self).validate(): response = False self.user =...

I investigated more. The scenario must be updated, sorry for previous message, was not enough. I have implemented examples from file as per other threads suggestions here, so try using...

Sorry but I think it's not. The only place I use that tag is in before_feature: ``` from_file_scenarios = (scenario for scenario in feature.scenarios if 'examples_from_file' in scenario.tags) ``` If...