Open Profpatsch opened 7 years ago
@Profpatsch How did you run the tests. On TravisCI they are currently green besides a problem on Python 3.5 which looks different from the one you described here.
Well, they are run automatically on build by nix; network & everything outside of the build folder is not accessible (sandboxed).
I cannot reproduce locally with tox
.
@mgedmin Same here.
Hm, then maybe it’s not worth the effort. I’ll just skip the tests here.
No, no, if we have nondeterministic test failures, we should hunt them down and fix them.
It's just that more information may be needed to help us reproduce this so we can fix it.
they are run automatically on build by nix
Do you know what command nix uses to run the tests? Is it tox
? Is it setup.py test
? Is it something else?
Ooh, I wonder if this could be related to file mtimes? IIRC Nix sets all the mtimes to 0, which makes it harder to determine whether a .mo file is up to date or not.
We have checks like if po_mtime > mo_mtime
that could break under those circumstances