add rake file with 'test' task

This commit is contained in:
Johan Holmberg 2016-01-06 20:58:47 +01:00
parent a65f019e51
commit cdd38dd5a3

8
python/Rakefile Normal file
View File

@ -0,0 +1,8 @@
# -*- ruby -*-
ENV["LC_ALL"] = "C" if RUBY_PLATFORM =~ /darwin/
desc "run unit tests"
task "test" do
sh "./cmdtest.py t"
end