We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718bf83 commit 8e49352Copy full SHA for 8e49352
doc/source/developing/testing.rst
@@ -162,6 +162,12 @@ Answer Testing
162
an `older version of this documentation <https://yt-project.org/docs/4.0.0/developing/testing.html#answer-testing>`_
163
decribes how the ``nose`` tests work.
164
165
+.. note::
166
+ Given that nose never had support for Python 3.10 (which as of yt 4.4 is our
167
+ oldest supported version), it is necessary to patch it to get tests running.
168
+ This is the command we run on CI to this end
169
+ ``find .venv/lib/python3.10/site-packages/nose -name '*.py' -exec sed -i -e s/collections.Callable/collections.abc.Callable/g '{}' ';'``
170
+
171
What Do Answer Tests Do
172
^^^^^^^^^^^^^^^^^^^^^^^
173
0 commit comments