- Nov 06, 2024
-
-
Xavier Garnier authored
-
- Dec 16, 2023
-
-
Laurent Peuch authored
-
- Oct 11, 2022
-
-
Frank Bessou authored
unittest2 uses has deprecated imports to collections.MutableMapping, unittest is sufficient as we use pytest to run the tests. Further work will be needed to fix tests that don't pass.
-
- May 14, 2020
-
-
Olivier CAYROL authored
-
- Dec 01, 2020
-
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
[E999] SyntaxError: invalid syntax [F821] undefined name 'file' [F841] local variable 'exc' is assigned to but never used [F811] redefinition of unused 'sys' from line 3 [F401] 'subprocess.Popen' imported but unused [F401] 'subprocess.PIPE' imported but unused [F821] undefined name 'file' [F841] local variable 'curdir' is assigned to but never used
-
Nsukami Patrick authored
-
- Nov 06, 2020
-
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
- remove six dependency - remove calls to unicode function - remove handling of py2 raw_input vs py3 input
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
- Oct 12, 2020
-
-
Simon Chabot authored
-
- Sep 29, 2020
-
-
Nsukami Patrick authored
There was a EOFError on the CI server raise by the raw_input function, so: - make sure to set default_encoding to 'utf-8' if sys.stdin.encoding returns None - make sure to call raw_input inside a try/except block - make sure to create the ~/.config folder where doctool config will be written See: https://forge.extranet.logilab.fr/open-source/doctools/-/jobs/63065
-
- Oct 13, 2020
-
-
Nsukami Patrick authored
-
- Sep 17, 2020
-
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
- Sep 14, 2020
-
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
- [E999] SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
- [F401] imported but unused - [W601] .has_key() is deprecated, use 'in' - [E266] too many leading '#' for block comment - [E713] test for membership should be 'not in' - [E714] test for object identity should be 'is not' - [E999] SyntaxError: invalid syntax - do not use bare except - 'except Foo as exc' instead of 'except Foo, exc' - import from future and use print as a function
-
- Sep 09, 2020
-
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
-
Nsukami Patrick authored
- add basic tox.ini file - remove useless file runtests.py - remove all the tests trying to load external entities from /usr/share/sgml/logilab-xml/stylesheet/ - logilab.common.testlib will be deprecated, use unittest2 instead - import TestCase from unittest2 - fix deprecation warning, replace failunlessequal by assertequal, replace failunless by asserttrue - add git+https://github.com/psycojoker/pytest-capture-deprecatedwarnings as a dev requirements
-