Description
Hi, I tried to run tests (pytest tests/unit
) on Windows, but they produced errors and are slow. After spending quite a while going down the rabbit hole, it seems quite simple to patch.
- Replace (deprecated)
datetime.datetime.utcfromtimestamp(ts)
withdatetime.datetime.fromtimestamp(ts, datetime.UTC)
On my non-UTC system, the roundtrip between timestamp and time object confuses the tests, since at some point in there local time is involved. Plus it is deprecated, so at some point this will need to be patched anyway.
- Replace
USERPROFILE
environment variable instead ofHOME
on Windows
HOME
is usually not used by Wwindows applications, including Python. Using the native Windows equivalent USERPROFILE
seems to have the same effect / fix it, at least on my machine.
- Hardcode localhost loopback
I notice on WSL the tests ran very fast, while on Windows it ran very slow. Turns out it's getting stuck on tests/unit/api_test.py
, test 25-33. Sprinkling in some debug logs (print(self.server.server_address)
), I notice it is hitting some random virtual network interface on Windows (I have plenty of those due to running VMs...) but using the loopback 127.0.0.1
on WSL. I'm not sure why, and I'm not sure if the tests are relying on a random IP and port, but hardcoding it to the loopback address (+ fixed port, since I couldn't figure out how to make it work by changing only the address) makes the tests pass significantly faster for me (a few seconds vs half a minute).
Happy to submit PRs and/or my patches, if it werent for requiring a legal name...