eve
eve copied to clipboard
Tests fail with Flask 2.2
Since Flask 2.2, all tests relying on app.add_url_rule
are failing. Flask changelogfor v2.2 reports significant changes.
For the time being, I'm pinning Flask dependency to <2.2
.
Anybody willing to take up this task?
The problem is that the setUp
of TestBase
uses the test_client
, and then after, we modify the application.
A possible solution would be to remove the logic that makes those calls on the setUp
, and then call those manually when needed per test basis. Can I proceed with this?
yes please