You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 31, 2020. It is now read-only.
So, my pyenv is 1.0.10-64-g29436ff and my nvm is 0.33.2. I am using node version 6.11.0 and pythons of two versions for this report: 3.5.3 and 3.4.4. Results are below:
When running batavia's python setup.py test command:
under the 3.5.3 virtual environment, I get 17 failed tests, here is the log.
under the 3.4.4 virtual environment, I get 2 failed tests, here is the log
Any thoughts?
The text was updated successfully, but these errors were encountered:
Ok - so there are a couple of different problems surfacing here.
The 3.4.4 failures are due to a timezone problem. There's something about how your box is determining your current system time that isn't coming out right. This is very difficult for us to diagnose, as it depends on your local timezone.
If you're able to step through time.mktime in batavia/modules/time.js to confirm which branches of the code are activating (or not activating), and what values are coming back from timezone guesses etc, that would be extremely helpful.
The extra failures in 3.5.3 are due to two causes:
A minor formatting difference in the way floating point numbers are being displayed, and
A minor change in the output format of certain error messages.
These sort of minor output changes are really common between Python versions (and even between micro versions). They're both relatively simple to fix - but unfortunately, we don't have the infrastructure in place to test both 3.4 and 3.5.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, my OS is Archlinux, which uses the latest-and-greatest versions of its packages.
Since
batavia
requires specific python and node versions, I use:pyenv
and itspyenv-virtualenv
plugin to install specificcpython
versions and then manage the virtual environments.nvm
to install and use specific versions ofnode
So, my
pyenv
is1.0.10-64-g29436ff
and mynvm
is0.33.2
. I am usingnode
version6.11.0
and pythons of two versions for this report:3.5.3
and3.4.4
. Results are below:When running
batavia
'spython setup.py test
command:3.5.3
virtual environment, I get 17 failed tests, here is the log.3.4.4
virtual environment, I get 2 failed tests, here is the logAny thoughts?
The text was updated successfully, but these errors were encountered: