Skip to content

Commit

Permalink
Use ./runtests.sh in Sublime Text
Browse files Browse the repository at this point in the history
This is very likely not to work in Windows (but, the old config is untested
on Windows as well as far as I'm aware).

Feel free to revert this if the old thing does work in Windows and this one
doesn't.

[skip ci] not covered by CI testing
  • Loading branch information
egeerardyn committed Sep 9, 2015
1 parent 8fe07c3 commit bbf13c8
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions matlab2tikz.sublime-project
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,27 @@
[
{
"name": "CI tests (Octave)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this might get overwritten by startup scripts
"cmd": ["octave","-q",
"--eval","cd('${project_path}/test'); runMatlab2TikzTests()"]
"working_dir": "${project_path}",
"cmd": ["./runtests.sh", "octave"]
},
{
"name": "CI tests (MATLAB)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this is not respected by MATLAB R2015a depending on the user settings!
"cmd": ["matlab", "-nosplash",
"-r","cd('${project_path}/test'); runMatlab2TikzTests()"]
"working_dir": "${project_path}",
"cmd": ["./runtests.sh", "matlab"]
},
{
"name": "CI tests (MATLAB HG1)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this is not respected by MATLAB R2015a depending on the user settings!
"cmd": ["matlab-hg1", "-nosplash",
"-r","cd('${project_path}/test'); runMatlab2TikzTests()"]
"working_dir": "${project_path}",
"cmd": ["./runtests.sh", "matlab-hg1"]
},
{
"name": "CI tests (MATLAB HG2)",
"env": {"CONTINUOUS_INTEGRATION":"true"},
"selector": "source.matlab",
"working_dir": "${project_path}/test", // this is not respected by MATLAB R2015a depending on the user settings!
"cmd": ["matlab-hg2", "-nosplash",
"-r","cd('${project_path}/test'); runMatlab2TikzTests()"]
"working_dir": "${project_path}",
"cmd": ["./runtests.sh", "matlab-hg2"]
},
{
"name": "ACID: make",
Expand Down

0 comments on commit bbf13c8

Please sign in to comment.