Ethan Mann

Results 4 issues of Ethan Mann

**Is your feature request related to a problem? Please describe.** Sometimes when looking at generated clients I notice weird/missing behavior and have no idea what version of openapi-python-client was used...

enhancement

I'm working on trying to optimize some of our CI/CD + compare performance of a couple tools, would be really nice if there was a commandline option to print out...

Added the following checks/tools to enforce format and quality: - [pytest-cov](https://github.com/pytest-dev/pytest-cov) for checking unit test coverage - [mypy](https://github.com/python/mypy) for type checking - [safety](https://github.com/pyupio/safety) for checking dependencies for vulnerabilities - [ruff](https://github.com/astral-sh/ruff)...

Previously there were calls to `time.sleep` in async functions - as this is a blocking call, it ruins any advantages of using async and halts all operations. Switching to `asyncio.sleep`...