You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41
Original file line number
Diff line number
Diff line change
@@ -31,3 +31,44 @@ Mybatis-core is now being auto formatted. Given nature of some code logic with
31
31
-```// @formatter:on``` to end the block of unformatted code
32
32
33
33
If comment sections need same behaviour such as javadocs, note that the entire block must be around entire comment as direct usage does not properly indicate that formatter treats it all as one comment block regardless.
34
+
35
+
Tests
36
+
-----
37
+
38
+
Mybatis-3 code runs more expressive testing depending on jdk usage and platform.
39
+
40
+
By default, we set ```<excludedGroups>TestcontainersTests</excludedGroups>``` which will exclude a subset of tests with @Tag('TestcontainersTests'). Further, if pre jdk 16, we will further exclude record classes from executions further reducing tests.
41
+
42
+
When using jdk 16+, we adjust the rule to ```<excludedGroups>TestcontainersTests,RequireIllegalAccess</excludedGroups>```.
43
+
44
+
When we run on ci platform, we further make adjustments as needed. See [here](.github/workflows/ci.yaml) for details.
45
+
46
+
As of 2/20/2023, using combined system + jdk will result in given number of tests ran. This will change as tests are added or removed over time.
47
+
48
+
without adjusting settings (ie use as is, platform does not matter)
49
+
50
+
- any OS + jdk 11 = 1730 tests
51
+
- any OS + jdk 17 = 1710 tests
52
+
- any OS + jdk 19 = 1710 tests
53
+
- any OS + jdk 20 = 1710 tests
54
+
- any OS + jdk 21 = 1710 tests
55
+
56
+
our adjustments for GH actions where platform does matter
0 commit comments