Skip to content

Commit 2f09e9d

Browse files
committed
#307: the alias was not working, trying differently
1 parent 9ef65ad commit 2f09e9d

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
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

.sbtrc

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,24 @@
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
2324
alias test=; testOnly *UnitTests
2425

25-
# * Integration tests
26+
# Run integration tests
2627
alias 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
2933
alias testDB=; project database; testOnly *
3034

31-
# Run agent-server compatibility tests
35+
# Run specific: agent-server compatibility tests
3236
alias 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
4139
alias jacoco=; jacocoOn; +clean; +test; jacocoReportAll; jacocoOff
4240
alias jacocoOff=; set every jacocoPluginEnabled := false

0 commit comments

Comments
 (0)