Skip to content

Commit

Permalink
Merge pull request #2424 from edx/will/fix-rake-test-cleanup
Browse files Browse the repository at this point in the history
Fix cleanup .pyc file command in rake test
  • Loading branch information
Will Daly committed Feb 3, 2014
2 parents eae4ade + 2a57e23 commit 830ad94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rakelib/tests.rake
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ end
task :clean_test_files do
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("find . -type f -name *.pyc -delete")
sh("find . -type f -name \"*.pyc\" -delete")
end

task :clean_reports_dir => REPORT_DIR do
Expand Down

0 comments on commit 830ad94

Please sign in to comment.