What is the best way to provide data across tests in one test class in PyTest except fixtures?
I need to write tests, that send user and unit create HTTP requests and then tests that send requests to delete them and check that all went right. As I need to do it in test functions, I don’t really know how to pass user/unit IDs to next tests that delete created entities by that IDs.