Omar Bohsali
Omar Bohsali
Fix for issue "mojombo/chronic#308" Chronic would now support: ``` ruby Chronic.parse("in an hour") Chronic.parse("in a day") ```
``` [2] pry(main)> Chronic.parse("in an hour") => nil ``` I just started using this library and will do a PR in a couple of days, unless someone has already found...
Is there a better way to do this? worker.py: ```python redis_settings = RedisSettings.from_dsn(config.REDIS_URL) redis_pool = asyncio.run(create_pool(redis_settings)) async def startup(ctx): ctx['redis'] = redis_pool await setup() async def shutdown(ctx): pass class WorkerSettings:...
The `tests/` directory is currently a few scripts I've been using to bootstrap development. We should add some actual unit and integration tests here.
Once this launches, one big question will be: where are all the incentives? We should make them easily discoverable. I propose we do this by either: 1. Creating a new...
Our EVM timing control leaves a little bit to be desired, so the test suite has some approximate matchers to prevent flakey tests. Once we get full control over EVM...
I was using this library as part of a project and ran into [this issue](https://github.com/OpenZeppelin/openzeppelin-test-helpers/issues/122). Saw a couple of people were thinking the same thing, so I went ahead and...