Denini Gabriel
Denini Gabriel
We ran the UI tests (androidTests) 50 times and found 1 flaky test. Would you like us to send you a pull request describe what tests are flaky and explaining...
This PR updates the check_list function in test_utils.py to: - use set for faster lookups. - add error message in assertion This makes the tests a bit more efficient and...
### **Describe the bug** Im trying to use pynguing to run on the [arrow](https://github.com/arrow-py/arrow) project, but it doesn't seem to work. Could you tell me if I'm doing something wrong...
Hi, I was trying to run the project and the tests on Windows, and I noticed a few problems. 1. When running the project, I got the following error: ```...
This PR fixes issue #36 by replacing os.geteuid() and os.getuid() with a cross-platform check for administrator/root privileges. Those methods don’t work on Windows and would otherwise cause break errors. Now...
Fix #160 This PR fixes test failures on Windows caused by differences in file paths and line endings. - Normalizes error message patterns so they match correctly across platforms. -...
When running the tests on Windows, some tests fail due to differences in file paths and line endings compared to Linux/macOS. Specifically: - File paths use backslashes (\) on Windows...
This PR updates some assertions in test_aggify.py to: - Compare directly with a set instead of converting keys to a list for faster lookups O(1). - Make the tests simpler...
On Windows, open(os.path.join(TESTS_DIR, 'endpoints.json')) uses cp1252 encoding by default, which caused UnicodeDecodeError when reading the endpoints.json. The fix is to explicitly use encoding="utf-8", ensuring consistent behavior across platforms. this make...
Hi! I tried to run the tests on my Windows machine and some of them failed. The issue happens when `open` the ndpoints.json without specifying an encoding. On Windows, the...