Decorator that marks a test as requiring a Windows-flavoured path class.
(fn)
| 61 | return fn |
| 62 | |
| 63 | def needs_windows(fn): |
| 64 | """Decorator that marks a test as requiring a Windows-flavoured path class.""" |
| 65 | _tests_needing_windows.add(fn.__name__) |
| 66 | return fn |
| 67 | |
| 68 | def needs_symlinks(fn): |
| 69 | """Decorator that marks a test as requiring a path class that supports symlinks.""" |
nothing calls this directly
no test coverage detected
searching dependent graphs…