vgveloso
vgveloso
> Is it random? > > No. > > Given the same input pitest will always generate the same mutants, and (with a couple of caveats) will always produce the...
Did you solve your problem? A project of mine is stuck because of this same problem (Full mutation matrix support only XML). Why would that be desired? Any help would...
Yes, it works but... I had to set outputFormats for both my format **and XML**. `outputFormats = ['DetailedCSV','XML']`. Otherwise the error "Full mutation matrix is only supported in the output...
You should set testPlugin as testng on pom.xml (if you're using maven), or build.gradle (if you're using gradle) Maven example: ```xml org.pitest pitest-maven 1.5.1 your.project.package.* your.project.package.* testng ``` Gradle example:...
Since it has been awhile this issue remain unanswered, I can try helping you @RoRoche with the following advice: use https://github.com/yegor256/jpeek-maven-plugin (1: git clone it, 2: `mvn clean install`, 3:...
For optional reports configuration check properties file at https://github.com/victorgveloso/TestSmellDetector/blob/master/src/resources/test-smells.properties
> Given most operations are done remotely on GitHub and our code is waiting for a response That's a good reason for async introduction! I mean... PyGithub should handle API...
It might involve a lot of work, but I'd love to see it implemented. Currently I'm stuck with JS on my research because of @octokit/rest.js performance overcomes PyGithub's. If some...
This short YouTube video demonstrate how asyncio could enhance http requests performance in python programs: https://youtu.be/m_a0fN48Alw Please @OlegYurchik, reopen this issue!
> Especially all the PaginatedList Aren't PaginatedLists necessarily sequential? I mean, the point of paginated lists is querying only pages whose data you intend to use. How would you implement...