BlueBrain / NeuroM

Neuronal Morphology Analysis Tool
https://neurom.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
102 stars 55 forks source link

Replace PyPI mock test dependency with unittest.mock #1084

Closed musicinmybrain closed 1 year ago

musicinmybrain commented 1 year ago

The unittest.mock module is part of the standard library since Python 3.3, so there is no longer any benefit to carrying the PyPI package as a test dependency.

See https://fedoraproject.org/wiki/Changes/DeprecatePythonMock for further context.

codecov-commenter commented 1 year ago

Codecov Report

Merging #1084 (13bf54b) into master (43005b3) will not change coverage. The diff coverage is n/a.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #1084 +/- ## ========================================= Coverage 100.00% 100.00% ========================================= Files 36 36 Lines 2452 2452 ========================================= Hits 2452 2452 ```
musicinmybrain commented 1 year ago

Thanks!