Remove hardcoded libpython binaries and add debug step
All checks were successful
build / build-linux (push) Successful in 16s
All checks were successful
build / build-linux (push) Successful in 16s
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from setuptools import unicode_utils
|
||||
|
||||
|
||||
def test_filesys_decode_fs_encoding_is_None(monkeypatch):
|
||||
"""
|
||||
Test filesys_decode does not raise TypeError when
|
||||
getfilesystemencoding returns None.
|
||||
"""
|
||||
monkeypatch.setattr('sys.getfilesystemencoding', lambda: None)
|
||||
unicode_utils.filesys_decode(b'test')
|
||||
Reference in New Issue
Block a user