Skip to content

Commit

Permalink
Merge branch 'master' into feature/291-project-improvements-after-0.3…
Browse files Browse the repository at this point in the history
….0-release
  • Loading branch information
benedeki authored Nov 17, 2024
2 parents 2280d7d + dd8eb26 commit 4a01e87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_filenames_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id: scan-test-files
uses: AbsaOSS/[email protected]
with:
name-patterns: '*UnitTests.*,*IntegrationTests.*'
name-patterns: '*UnitTests.*,*IntegrationTests.*,*CompatibilityTests.*'
paths: '**/src/test/scala/**'
report-format: 'console'
excludes: |
Expand Down
3 changes: 3 additions & 0 deletions .sbtrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ alias testDB=; project database; testOnly *

# Run all tests
alias testAll=; testOnly *

# Run agent-server compatibility tests
alias testCompatibility=; testOnly *CompatibilityTests
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import za.co.absa.atum.agent.dispatcher.HttpDispatcher

import scala.collection.immutable.ListMap

class AgentWithServerIntegrationTests extends DBTestSuite {
class AgentServerCompatibilityTests extends DBTestSuite {

private val testDataForRDD = Seq(
Row("A", 8.0),
Expand All @@ -40,7 +40,7 @@ class AgentWithServerIntegrationTests extends DBTestSuite {
.add(StructField("columnForSum", DoubleType))

// Need to add service & pg run in CI
ignore("Agent should be compatible with server") {
test("Agent should be compatible with server") {

val expectedMeasurement = JsonBString(
"""{"mainValue": {"value": "4", "valueType": "Long"}, "supportValues": {}}""".stripMargin
Expand Down

0 comments on commit 4a01e87

Please sign in to comment.