##// END OF EJS Templates
Prepare completer for pytest....
Prepare completer for pytest. use proper unittest class with setup and teardown methods to capture deprecation warnings; and move support classes and function outside of the testcase definition. Make all standalone functions methods. Beyond this no code change.

File last commit:

r20547:8f4e2b41
r25099:7957b6e0
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))