Brian Cherinka
Brian Cherinka
Although, looking at the traceback more closely, that code does not match the code in 4.1.1, https://github.com/ClearcodeHQ/pytest-postgresql/blob/v4.1.1/src/pytest_postgresql/factories/noprocess.py. Unless Github scrubbed that line from the code display? But I can confirm...
Sorry for the long delay. I was away from my computer for the past week. It's the default pytest configuration and I call it straight with `pytest`, no options. Here...
Ok, so I updated the pytest command in the github action to `pytest --postgresql-host=localhost --postgresql-port 5432 --postgresql-password=test --postgresql-dbname=test` and I no longer get the password error, but tests are still...
@fizyk Yeah that's the idea. The first test that runs is in a module `test_connection.py` in my top level `tests` directory that tests that we have successfully connected to the...
I can't go back to test on Travis since they removed their free tier, so I'm trying to test the package versions separately. I went back to `2.6.1` but couldn't...
@fizyk Yeah this particular repo in our org is. It's https://github.com/sdss/sdssdb/tree/oldtests. The branch I'm trying to get this working in is `oldtests`. This branch I was incrementing the versions of...
Has there been any progress on this? I'm having the same problem. I've stuck a tag div inside a modal window that is hidden until a button is clicked. The...
@rtconner Yeah, I'm just started trying to implement this nice tag feature in my code, and of course, I end up using it in a way that's broken. :( Could...
@maxwells I second this request. This seems like a basic requirement. The code that you provide only removes all tags up to the last one. Why doesn't it also remove...
On closer inspection, it looks like it might have something to do with `factory-boy` and SQL Server identity key columns. See https://docs.sqlalchemy.org/en/14/dialects/mssql.html#auto-increment-behavior. I tried removing the Sequence column from my...