##// END OF EJS Templates
Disable codecov for current patch...
Disable codecov for current patch It is too sensitive and fails when the number of lines in a file decreases.

File last commit:

r20547:8f4e2b41
r26965:74c6e322 Carreau-patch-2
Show More
list_subdirs.ipy
6 lines | 194 B | text/plain | TextLexer
# A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
if d != '__pycache__/':
display(FileLinks(d))