nipy / nibabel

Python package to access a cacophony of neuro-imaging file formats
http://nipy.org/nibabel/
Other
634 stars 258 forks source link

270 tests fail because of quote issues #1317

Closed yurivict closed 2 months ago

yurivict commented 2 months ago

See the log here.

There are a lot of deltas like:

-    if dt.kind == 'c':
+    if dt.kind == "c":

Version: 5.2.1 Python-3.9 FreeBSD 14.0

effigies commented 2 months ago

Why are you running black?

yurivict commented 2 months ago

black just happened to be installed on this system.

effigies commented 2 months ago

Ah, it looks like your testing setup is injecting tests we don't use. Perhaps you have a global pytest configuration that needs to be isolated? You should be able to run our entire test suite with tox.

In any event, we will not be adopting black, so I'm going to close this issue.