owillebo
owillebo
See https://en.wikipedia.org/wiki/Exit_status Processes should exit with a non-zero value upon failure and zero upon success. For Sikuli it is very important to adhere to this standard because (automatic) testing systems...
Some results on Windows 10 2004, Intel 9850H 6 cores/12 threads 32 bit pylinting matplotlib. Interesting is that with roughly half the threads we get fastest result. Results in seconds...
Thanks, I think utilizing all (12) available threads and halving the time for running Pylint is a good thing. Burning threads is a waste of time and resources. I think...
If I run two pylint sessions concurrently each with 6 jobs and another half of the matplotlib files, the wall clock duration drops from 65 seconds (for all files in...
> Thanks for the issue report. It's hard for me to run Windows and I'm not sure if this is Windows-specific. You said it happens in coverage 5.5 and 6.5.0....
I added a bash script. Behavior is exactly the same as on Windows.
We have the test code adjacent to the code, i.e. 2 folders holding the code and tests in the root. ``` root code tests ``` The test framework changes directory...
Sysinternals procexp seems to suffer from the same issue. 
> I'm not sure I understand why you did this: > > ```python > while True: > count += 1 > if count % 10000000 == 0: > print(count, process.cpu_percent(),...
> Ah you did it in order to make the CPU percent increases before requesting the value. Understood. > > To summarize: if you do `cpu_affinity([0])` you see 100% usage....