File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed
Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 4040 java-version : " adopt@1.8"
4141
4242 - name : Build and run tests
43- run : sbt testAllButCompatibility
43+ run : sbt testAllStandard
4444
4545 - name : Generate documenation
4646 run : sbt doc
Original file line number Diff line number Diff line change 1717# Aliases in this file expected usage of test file naming conventions:
1818# - "UnitTests" suffix for test files and Suites which define unit tests
1919# - "IntegrationTests" suffix for test files and Suites which define integration tests
20+ # - "CompatibilityTests" suffix for test files and Suites which define Agent <-> Server compatibility tests
2021
2122# CPS QA types aliases
22- # * Unit tests
23+ # Run unit tests
2324alias test=; testOnly *UnitTests
2425
25- # * Integration tests
26+ # Run integration tests
2627alias testIT=; testOnly *IntegrationTests
2728
28- # Project specific aliases
29+ # Run all standard tests (all except the special ones below)
30+ alias testAllStandard=; test; testIT
31+
32+ # Run specific: database tests using Balta
2933alias testDB=; project database; testOnly *
3034
31- # Run agent-server compatibility tests
35+ # Run specific: agent-server compatibility tests
3236alias testCompatibility=; testOnly *CompatibilityTests
3337
34- # Run all tests except compatibility tests (requires actual server running)
35- alias testAllButCompatibility=; test; testIT; testDB
36-
37- # Run all tests
38- alias testAll=; testOnly *
39-
4038# Jacoco Aliases
4139alias jacoco=; jacocoOn; +clean; +test; jacocoReportAll; jacocoOff
4240alias jacocoOff=; set every jacocoPluginEnabled := false
You can’t perform that action at this time.
0 commit comments