Dolan Antenucci
Dolan Antenucci
FWIW, I still see the odd characters with FA ~5.14.0~ 5.15.3 (free) on a site with `` in the header. I haven't tried adding `@charset` to the CSS file, but...
If using [pre-commit](https://pre-commit.com/), here's a hook to using the stdin approach @pawamoy described: ```yaml - repo: local hooks: - id: python-safety-dependencies-check name: Run safety on project packages. entry: bash -c...
It makes sense to me for settings to work similar to how behave-django allows fixture loading, where behave-django would support both of the following options: ## Interface: ## ### Option...
Ran into the same problem, and switching my command fixed the issue: `./manage.py bower_install -- --allow-root --no-input` works whereas `./manage.py bower install -- --allow-root --no-input` does not work. (note the...
The main advantage I see is that django-bower works seamlessly with collectstatic; thus, if you run `manage.py bower_install` before running `manage.py collectstatic`, your bower packages are automatically collected for serving,...
You raise a good point. I think django-bower won't be for everyone, but for those that like the integration with django, django-bower does a good job -- for the reason...
Same result on my end; here's the message in english: "This extension violates the Chrome Web Store policy." So what policy did it violate?
FWIW, there's an official [python gherkin parser](https://github.com/cucumber/gherkin-python) that might make sense to use instead of pytest-bdd's own parser. If you want to continue supporting the current multiline step format, then...
One hacky workaround for the "enabled" filtering is to use nested matrix-generators with a final list-generator for defining the "enabled" parameter. Here's an example using cluster configs. I'm using an...
As noted by https://github.com/GoogleContainerTools/skaffold/issues/8515#issuecomment-1494738139, remote chart releases should be in `deploy` instead of `manifests`. With this, you can also remove the kubctl section; for example: ```yaml apiVersion: skaffold/v4beta7 kind: Config...