Brendan McCollam

Results 47 comments of Brendan McCollam

I know developers don't always control the purse strings, but IMHO if your company is making money using free software, you should just pony up for a commercial license to...

Anyone know if this issue still under consideration/development?

Is there any interest in getting this merged? I'd like to be able to generate Postgres array literals using `jinjasql`

I've also tried following the example suggested [in the docs](https://pytest-django.readthedocs.io/en/latest/database.html#create-the-test-database-from-a-custom-sql-script) to override `django_db_setup` in `conftest.py` but that doesn't seem to be working for me, either. ```python @pytest.fixture(scope='session') def django_db_setup(django_db_setup, django_db_blocker):...

I'm not convinced this is an elegant or maintainable solution, but for the benefit of other readers who might have this issue, I was able to get this working by...

Right now, we're tearing it down after every test run and re-creating fresh.

> Have you considered creating the schema itself in a migration? That's a pretty good suggestion! The only problem is I'd want that to run as the 0th migration, and...

I never found a nice solution. Unless things have changed in the last couple years, Django's support for non-public schemas should be considered experimental at best. My advice would be...

In Python3, `print()` is a function, not a keyword, so you have to call it like `print("hello world")`