Permalink
Please sign in to comment.
Browse files
Allow test modules to be specifed in the rakefile.defaults file
Update Readme
- Loading branch information...
Showing
with
27 additions
and 2 deletions.
- +1 −1 Rakefile
- +8 −0 rakefile.defaults.example
- +18 −1 src/testframework/Readme.md
2
Rakefile
8
rakefile.defaults.example
@@ -0,0 +1,8 @@ | ||
+# if regular build the modules to exclude from the build | ||
+NONETWORK = true | ||
+EXCLUDE_MODULES = %w(tools/touchprobe tools/laser tools/temperaturecontrol tools/extruder) | ||
+ | ||
+# if test framework build the modules to include in the test... | ||
+# here we enable unit tests for tools/temperatureswitch module and any unit tests in /src/testframework/unittests/tools/temperatureswitch/ | ||
+# and any unittests in the src/testframework/unittests/libs folder | ||
+TESTMODULES= %w(tools/temperatureswitch libs) |
19
src/testframework/Readme.md
0 comments on commit
80bbeba