ansipunk
ansipunk
The issue is present when the tests are ran using `-k regex` argument, however, tests run fine when I use `@pytest.mark.my_mark` and `pytest -m my_mark` instead
Something has to change. This workaround ```typescript if (Deno.env.get("MYVAR")) { main(); } else { Deno.serve((_) => new Response("Deployment stage")); } ``` is not something good to have in your codebase....
@csvn that's your problem. Deploy, and if everything is fine, promote to production. Just like Deno Deploy does it if you are using the web interface.
@csvn agreeing to disagreeing is fine, but in my opinion arguments like `--no-execute` defeat that purpose entirely, as well as adding extra branches in code to bypass test execution. Not...
Is there a reason to have RecordInterface at all? It declares only two methods omitting lots of other methods and magic methods in common.Record. If someone needs a custom Record...
It's mostly ready, but I will double-check if I have missed anything, if there is any code that should have been updated.
Never mind, this is not ready, there is a lot of work to do. `backends/postgresql` is hardcoded to use `asyncpg` no matter the specified dialect, so all the tests were...
@tarsil Read `databases/core.py` and `databases/backends/postresql.py` please.
@tarsil What? No. I mean conneciton management and connection pools. If you read the source code, you can see that it exclusively uses `asyncpg` or `aiopg`. If you could explain...
The use case is to use `psycopg` instead of `asyncpg`. With `asyncpg` we have to have `psycopg` anyway for `SQLAlchemy-Utils` and `alembic` to function. With this working we can remove...