Commit 830ad942 by Will Daly

Merge pull request #2424 from edx/will/fix-rake-test-cleanup

Fix cleanup .pyc file command in rake test
parents eae4adeb 2a57e233
...@@ -59,7 +59,7 @@ end ...@@ -59,7 +59,7 @@ end
task :clean_test_files do task :clean_test_files do
desc "Clean fixture files used by tests and .pyc files" desc "Clean fixture files used by tests and .pyc files"
sh("git clean -fqdx test_root/logs test_root/data test_root/staticfiles test_root/uploads") sh("git clean -fqdx test_root/logs test_root/data test_root/staticfiles test_root/uploads")
sh("find . -type f -name *.pyc -delete") sh("find . -type f -name \"*.pyc\" -delete")
end end
task :clean_reports_dir => REPORT_DIR do task :clean_reports_dir => REPORT_DIR do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment