Skip to content

Commit 2fac2f0

Browse files
committed
Fix Jenkins continuous integration by excluding BasicValidationTest and ExtendedValidationTest
1 parent 66dcbbc commit 2fac2f0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

examples/WorldClock/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#define TIME_ZONE_TYPE_MANUAL 0
4040
#define TIME_ZONE_TYPE_BASIC 1
4141
#define TIME_ZONE_TYPE_EXTENDED 2
42-
#define TIME_ZONE_TYPE TIME_ZONE_TYPE_EXTENDED
42+
#define TIME_ZONE_TYPE TIME_ZONE_TYPE_BASIC
4343

4444
//------------------------------------------------------------------
4545
// Rendering modes.

tests/auniter.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,25 @@
88

99
[env:uno]
1010
board = uno
11+
exclude = tests/BasicValidationTest|tests/ExtendedValidationTest
1112

1213
[env:nano]
1314
board = nano
1415
preprocessor = -DAUNITER_NANO
16+
exclude = tests/BasicValidationTest|tests/ExtendedValidationTest
1517

1618
[env:micro]
1719
board = promicro16
1820
locking = false
1921
preprocessor = -DAUNITER_MICRO
20-
exclude = examples/Clock
22+
exclude = examples/Clock|tests/BasicValidationTest|tests/ExtendedValidationTest
2123

2224
[env:esp8266]
2325
board = nodemcuv2
2426
preprocessor = -DAUNITER_ESP8266
25-
exclude = examples/Clock
27+
exclude = examples/Clock|tests/BasicValidationTest|tests/ExtendedValidationTest
2628

2729
[env:esp32]
2830
board = esp32
2931
preprocessor = -DAUNITER_ESP32
30-
exclude = examples/Clock
32+
exclude = examples/Clock|tests/BasicValidationTest|tests/ExtendedValidationTest

0 commit comments

Comments
 (0)