Results 37 comments of Will Barton

Hi @Vinci08. I'm not familiar with django-tenant-schema, so I don't know right off what it's doing that might be different from Django's standard `migrate`. With a glance at the documentation,...

@moaxey Hmm, I don't think you should need to do anything in migrations. This looks like a bug in Django-Flags with the user condition validator being used in the Django...

I'm not familiar with the service you mention, but at a *very* cursory glance, you could probably hook [their Python API](https://docs.getunleash.io/sdks/python_sdk) into Django-Flags's [state API](https://cfpb.github.io/django-flags/api/state/).

@jonwhittlestone this is a fantastic idea! I know @Scotchester had had a similar idea around adding metadata to flags/conditions like this. It does not currently have a way to do...

I like the idea of using django-test-migrations or a custom system check a lot better than overriding the management command or relying on commit hooks. But I definitely think this...

@Scotchester speaks for me in these matters.

> Workflow templates just announced: https://github.blog/changelog/2020-06-23-github-actions-workflow-templates/ Naturally.

@Scotchester I've updated this PR (and opened https://github.com/cfpb/.github/pull/1) based on the GitHub Actions workflow templates. It now has screenshots of how to use the templates to hopefully https://github.com/cfpb/.github/pull/1 will provide,...

@dimaqq Sure! Because [`FLAGS`](https://cfpb.github.io/django-flags/settings/#flags) are definable in Django settings, you can use [Django's standard `override_settings`](https://docs.djangoproject.com/en/5.0/topics/testing/tools/#django.test.override_settings) to test with a flag off and on. An example is in Django-Flags's own tests,...