Commit 3ffdb450 authored by norvell's avatar norvell
Browse files

Use os.remove/os.makedirs instead of bash rm/mkdir

parent 98ecfc53
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ for s in scripts:
                if os.path.exists(path): os.remove(path)
            if 'mkdir' in proc:
                path = proc.split()[-1]
                os.mkdirs(path)
                os.makedirs(path)
                

@pytest.mark.parametrize("test_tag", list(test_dict.keys()))