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
It looks like github.com/nvie/nose-machineout.git is no longer available.
It worked for me using your version of nose-machineout. Additionally, if you would add the following lines to your version of nose-machineout, it would work under python as well.
try:
unicode = unicode
except NameError:
# 'unicode' is undefined, must be Python 3
str = str
unicode = str
bytes = bytes
basestring = (str,bytes)
else:
# 'unicode' exists, must be Python 2
str = str
unicode = unicode
bytes = str
basestring = basestring
It looks like github.com/nvie/nose-machineout.git is no longer available.
It worked for me using your version of nose-machineout. Additionally, if you would add the following lines to your version of nose-machineout, it would work under python as well.
(from:) oxplot/fysom#1
I suspect only the basestring part of the clause is really necessary.
Thank you again for this great tool!
The text was updated successfully, but these errors were encountered: