Tag: <span>gradle</span>

I am working on a project, which has some issues with tests. Basically, they all run quite slow and I was curious, how can I improve the performance of these tests? Well, one improvement is simple – run tests in parallel. Of course,…

Programavimas

If you want to split unit and integration tests in Kotlin and Gradle, do the following: And, that’s it 🙂 If unit tests fail, integration tests won’t be run. Problem solved 🙂

Programavimas

I have just started working with a Gradle project, that needs a simple way of incrementing its version. And I came up with a simple solution. Project’s version is following the standard: major.minor.patch. So, first of all create a version.properties file that looks…

Programavimas