Samael

Results 284 comments of Samael

Hopefully https://github.com/stevesaliman/gradle-cobertura-plugin/pull/178 will be merged to resolve this problem

Still working on getting tests to pass. Will update again when completed

There's a few things in the PR: #### Updating Gradle to 7.2 I would've updated to latest but that caused tests to fail due to a [Gradle regression](https://github.com/gradle/gradle/issues/20301). To be...

that's odd. The CI does test with SQL Server using the msodbcsql18 driver and SQL Server 2022 and the table structure for the test certainly uses VARCHAR: https://github.com/buggins/ddbc/blob/266d9355c0d4ed024a017764b5fb1a2ba9cfbc7d/example/source/testddbc.d#L328-L360 Does the...

yeah #73 was created to add support for NVARCHAR but it didn't get implemented. There are other select statements that are tested. it does: - `SELECT * FROM ddbct1` -...

that's interesting, especially as those tests differ in columns used. perhaps the alias for the table name makes a difference. It may be worth adding test cases for variations of...

I've tried to update my project dependencies using the _instrumentedJar_ config on the project dependencies but as one of the modules depends on the plugin code of the main code...

~I changed the dependencies section of the sub project that requires the main source to use _compileOnly_ and it seems to be working fine~ https://github.com/intellij-dlanguage/intellij-dlanguage/commit/e6f849a05e071d3810b64fa3a7b37ba0091e32ff ignore that. Had to revert...

I was able to work around the "Must be precomputed" using `-Djava.awt.headless=true` which I found here https://github.com/jonathanlermitage/intellij-extra-icons-plugin/blob/8271681507a409ff7d6bcc97e28a73d4d6f5cc1b/build.gradle.kts#L175-L180 Kotlin syntax: ``` withType { useJUnitPlatform() jvmArgs("-Djava.awt.headless=true") } ``` With groovy syntax it...

Thanks for the quick response. I'm currently compiling DarkRadiant so will see how that goes. If someone was to make a PR that ports all GUI tools to something like...