Ben Greiner

Results 199 comments of Ben Greiner

Hacky workaround: ```diff Index: nbval-0.9.6/tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb =================================================================== --- nbval-0.9.6.orig/tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb +++ nbval-0.9.6/tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb @@ -37,6 +37,9 @@ } ], "source": [ + "import warnings\n", + "from matplotlib import MatplotlibDeprecationWarning\n", + "warnings.filterwarnings(\"ignore\", category=MatplotlibDeprecationWarning)\n", "x**2...

I saw the same errors in openSUSE and got around this by making sure the testpath is honored (#930 showed me the way).

1.14.1 ~~https://github.com/plotly/dash-core-components/commit/610af0fd66e2baed9ea412c398f6f0e7a4cc4189~~ https://github.com/plotly/dash-core-components/commit/230997613c81ce927cf558720585a9632e3df192

https://github.com/plotly/dash-table/commit/93e88cdef2d1764c3b19ff9bd45f565c70e6704a == 4.11.1 ?

If you run nosetests without capturing stdout (`-s` or `--nocapture`), stdout will have a file descriptor and prompt_toolkit won't run into the `UnsupportedOperation` exception.

That's what I heard and why we create these patches for openSUSE python packages. Can't find the reference right now. Ping @mcepl

This is incompatible with the pinning to mock 3.0.5 in #868 due to recursion errors in two tests.

tox.ini is not needed. Even with generating the data manually, the tests fail, because of missing pyre-check (no package available for openSUSE, and packaging that does not look straightforward). The...

0.3.10 still needs a manual codegen. Otherwise these tests fail: ``` [ 64s] FAIL: test_codegen_clean_return_types (libcst.codegen.tests.test_codegen_clean.TestCodegenClean) [ 64s] Verifies that codegen of return types would not result in a [...