pandichef
pandichef
As of July 2020, `getfixture('db')` at the top of your doctest works.
A quick fix here might be to add a setting that disables the django-material-admin templates for certain browsers (or platforms). I'm Ok telling my users that they should upgrade to...
This works pretty well FWIW... `pyproject.toml`: ```toml [install_requires] django = "*" [extras_require.dev] django-debug-toolbar = "*" [build-system] requires = ["setuptools", "wheel", "toml"] ``` `setup.py`: ```python from os.path import dirname, abspath, join...
@dudil It looks like Fauxsys is using flit, which I've never used. My approach was born of frustration with the existing package management tools. * "pip install -r requirements.txt" doesn't...
"100% test coverage against HardHat provider" Does this mean devs will be able to use HardHat Network under the hood of MockProvider as an alternative to Ganache?
I see. Do you have a link that outlines the ideal workflow to export `my_clippings.txt` from [https://read.amazon.com/notebook](https://read.amazon.com/notebook)? FWIW, it seems like Amazon & Kindle share a session, but AWS is...
In my use case, I have a single foreign key called `pool`. So I set the value manually i.e., ```python df['pool_id'] = 9 ``` If you want to handle choices...
I second this. For example, I'd like to mark a doctest as `@pytest.mark.slow`. Is there any way to do this currently?
The following solved the problem for me. (I added it to `pythonstartup.py`.) Say you're actively working on `my_shiny_new_package`. This hook just force reloads `my_shiny_new_package` before running any command. ```python import...