Kirill Zhukov

Results 37 comments of Kirill Zhukov

Seems to be this commit? https://github.com/anshooarora/extentreports-java/commit/cdf2d2c948a90a916caeaaa258695e3442e9a819

@supermarin, sure. [Here](https://gist.github.com/kirillzh/ac0adecc2f65a1cb423b61396fa4e3c1) is raw `xcodebuild` log with `scan` output and `xcpretty` reports. Essentially it's an empty Tabbed Application with simple `EarlGrey` tests (using`XCTest`). I'm calling `fatalError()` if second tab...

Shouldn't it be [`--screenshots`](https://github.com/supermarin/xcpretty/blob/4b90228e80dd74dbdb209553668178023447ff85/bin/xcpretty#L65)?

Also attempted to turn off foreign key checks like so `PRAGMA foreign_keys = OFF`. The query does pass but doesn't seem to actually disable the check, deleting tables that run...

This is where plugin looks for JVM test tasks: https://github.com/kotest/kotest-intellij-plugin/blob/8b7fdab73e1f6611e36702b7bb90e7d60257bcc6/src/main/kotlin/io/kotest/plugin/intellij/toolwindow/treeModel.kt#L59 What would be the most sensible approach here to make it pick up test tasks from other compilations?

As a workaround, created this task that automatically generates a run configuration for each integration test file: ```kotlin /** * Generate runner configuration for JVM Integration tests manually, until Kotest...

> Does this change work for you locally? I don't think it does. I'm not very experienced with plugin development, but what I did is I built a snapshot plugin...

@dima-avdeev-jb, I'm understanding that it's not currently possible to make a Composable function public in common code while targeting native. This is blocking us from being able to modularize the...

@Kantis, I see this happening when trying to run/debug individual tests from IDE. Seems to work fine with the whole test suite though:

I see this in modules that don't have JVM target (eg Android or iOS), without debugger as well. The only way that I was able to make unit tests run...