-
Notifications
You must be signed in to change notification settings - Fork 423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pytest Fixture to do same as TenantTestCase #589
Comments
I'm using this project with pytest. It took some work to figure out how to set it up, but when I did it worked like a charm. |
@rj76 any pointers or help appreciated on how you set it up appreciated. Thanks! |
I've created this gist, that should help you get setup: https://gist.github.com/rj76/c33ee201428be26b9c78a78473b5b169 One thing to keep in mind, is that to use fixtures you must be sure to create them in the right tenant context. If you only use one tenant in your tests, it's easy to reuse them, but in my case I ended up not having many shared fixtures across app tests. If you have any questions, let me know ;) |
@rj76 thanks so much you are awesome will take a look. Happy New Year! |
Richard, I've been struggling while trying to run pytest on my test_views.py. I was hoping you could point me in the right direction (examples, articles, etc) thanks in advance! |
Hi, I couldn't find much information on the interwebs, so I figured it out myself. Can you point out the problem you're facing? |
I spent a little time tinkering with the excellent example (thanks @rj76 ! ) https://gist.github.com/GeeWee/54b6fd7ad87bcc876781ae02d1e0993d |
+1 I'm also looking to get this working with pytest. The |
Did anyone find a solution to this? |
I've just updated my gist reference above to the version I am currently using day-to-day, and I'm happy to report it works without a hitch. |
I created another gist how I have done this using fixtures: https://gist.github.com/user37596/97e612f5c67adfad79105613af6204a6 Notice though, it is made for django-tenants package, not django-tenant-schemas, but it's not very hard to adapt the code to django-tenant-schemas. With those fixtures in your conftest.py, you can create tests like:
The test_client fixture makes sure non-public test tenant exists and is activated. If you want to test in the public tenant domain, use:
|
I've fixed it by setting up a The downside to this implementation is that everything really does happen on a DB (I use a separate test DB for this) and that the |
I would like to move our Django Project using this project to use Pytest for testing. Unfortunatley the current TenantTestCase and FastTenantTestCase does not work with Pytest as it doesn't create the tenant schema and tries to use public schema for everything.
See: pytest-dev/pytest-django#633
Be great if a pytest fixture could be added to this project as an alternative to TenantTestCase so we can use pytest easily with this project.
I am happy to help with this issue and contribute this to the project but would like so guidance from the project owner if possible.
Many thanks.
The text was updated successfully, but these errors were encountered: