##// END OF EJS Templates
clean up
slojo404 -
Show More
@@ -1,11 +1,12 b''
1 1 import os
2 2 import errno
3 import os.path
3 4 import subprocess
4 5 import nose.tools as nt
5 6
6 test_rst_fname = 'tests/tutorial.rst.ref'
7 ref_ipynb_fname = 'tests/tutorial.ipynb.ref'
8 test_generate_ipynb_fname = 'tests/tutorial.ipynb'
7 test_rst_fname = os.path.join('tests', 'tutorial.rst.ref')
8 ref_ipynb_fname = os.path.join('tests', 'tutorial.ipynb.ref')
9 test_generate_ipynb_fname = os.path.join('tests', 'tutorial.ipynb')
9 10
10 11
11 12 def clean_dir():
General Comments 0
You need to be logged in to leave comments. Login now