Joel Ostblom
Joel Ostblom
Interactive axis labels have not yet been implemented in Vega-Lite and is being tracked in this issue https://github.com/vega/vega-lite/issues/1657 (see the later comments and the two issues referenced as duplicates at...
Great! Thanks for offering to work on this, that would be very welcome. I think these changes will only make it easier to navigate the gallery, and if anyone disagrees...
I agree this should be more informative. I see that there are a couple of TODOs in that file on improving the docstrings for the parameters and for the bindings....
Note to self, should change to allow for any type of error to be propagated and not just assertion errors to account for situations where the failure message is not...
> I think some thought should go in to how this gets specified; specifically, the granularity of this configuration. Is it something that gets applied in the assignment config and...
One distinction I could see as useful would be to show the full traceback or at least the line that makes the assertion on gradescope if `show_hidden=true`, so that students...
Since the test namespace is isolated from the rest of the notebook I tested with `import sys; sys.tracebacklimit = 0` which slightly cuts down the printed messages. Before:  After:...
Maybe it would be possible via the different verbose flags for doctest? There are [a few mentioned in the documentation](https://docs.python.org/3/library/doctest.html#module-doctest) and I will try to look into it myself also....
@chrispyles I discovered that it is actually quite straightforward to introduce this behavior. By not returning `runresults.getvalue()` [when the function `run_doctests()` fail](https://github.com/ucbds-infra/otter-grader/blob/7c00b4675870f07c5a6777340e7f148a663533f0/otter/test_files/ok_test.py#L51-L54) we can avoid printing all the verbose info...
Thanks for the reply @davidhalter. I actually tried implementing sorting downstream of jedi initially (in ipython), but couldn't figure out a good way of doing this since I only had...