https://kotlinlang.org logo
Title
s

Stefan

08/06/2021, 3:19 PM
is it possible to see the
gradle check --scan
results of the build somewhere?
s

sam

08/06/2021, 3:20 PM
It should show a link at the end of the build in the logs
s

Stefan

08/06/2021, 3:21 PM
yeah, it does. I wonder if I can find the result of the github actions of the (release) build somewhere?
s

sam

08/06/2021, 3:22 PM
Isn't it in the github action logs at the end, that's what I mean
s

Stefan

08/06/2021, 3:24 PM
oh yes, it does
ok, then I have a follow up question - I've tried to use the experimental withData data driven tests
but they don't seem to work (be executed) on my machine. Even with the
RequiresOptIn
compiler flag. I now checked the first 2 kotest tests which use it as well (
EnumValueInDataClassNamingTest
&
DataTestNameTest
), but they don't appear to be executed in the last build (https://github.com/kotest/kotest/actions/runs/1102231112)
they're also not executed on my local machine when I run
gradlew check --scan
s

sam

08/06/2021, 3:48 PM
hmmmm
a lot of the data tests spool up their own version of the engine
s

Stefan

08/06/2021, 3:49 PM
shouldn't the test name appear somewhere in the test result overview?
s

sam

08/06/2021, 3:56 PM
well the "test data tests" should appear
you might be right tho if they're getting skipped
s

Stefan

08/06/2021, 3:58 PM
there is a
DataTest
- but it's testing the "deprecated"
forAll
stuff
s

sam

08/06/2021, 4:04 PM
look in the new module
framework-datatest
AFK right now
s

Stefan

08/06/2021, 4:10 PM
where do I find the test results for this module?
ping
s

sam

08/11/2021, 3:07 PM
I don't understand your question
s

Stefan

08/11/2021, 3:09 PM
oh, where do I find the tests results which test the experimental
withData
method?
s

sam

08/11/2021, 3:09 PM
do you mean where do you see the test output?
just in intellij or gradle
if you configure junit reports, then you should see that in build/reports
s

Stefan

08/11/2021, 3:09 PM
yeah I meant from the ci builds
s

sam

08/11/2021, 3:10 PM
you should check you have junit output enabled (it might be enabled by default in gradle)
then it will go into build/reports or build/test-reports
s

Stefan

08/11/2021, 3:26 PM
ahh, now I got it. I was looking for the test of
DataTestNameTest
in gitlab ci. I was kind of confused, that it's not mentioned immediately in the
--sync
report, but only in the command line output. Thanks