We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa3effa commit 53ba831Copy full SHA for 53ba831
tests/common.sh
@@ -10,6 +10,12 @@ function build_sketches()
10
export ARDUINO_IDE_PATH=$arduino
11
for sketch in $sketches; do
12
local sketchdir=$(dirname $sketch)
13
+ local sketchdirname=$(basename $sketchdir)
14
+ local sketchname=$(basename $sketch)
15
+ if [[ "${sketchdirname}.ino" != "$sketchname" ]]; then
16
+ echo "Skipping $sketch, beacause it is not the main sketch file";
17
+ continue
18
+ fi;
19
if [[ -f "$sketchdir/.test.skip" ]]; then
20
echo -e "\n\n ------------ Skipping $sketch ------------ \n\n";
21
continue
0 commit comments