| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
+ Mark another TC failing when not in master.
|
|
|
|
|
|
| |
+ Bug appeared as last 5 TCs (test_commit & test_stream) said:
OSError: [WinError 6] The handle is invalid
|
| |
|
|
|
|
|
|
|
|
| |
+ Mark all unused vars and other non-pep8 (PyDev) warnings
+ test_utils:
+ enable & fix forgotten IterableList looped path.
+ unittestize all assertions.
+ remote: minor fix progress dispatching unknown err-lines
|
|
|
|
|
|
|
|
|
| |
+ Detect code breaking the body of TCs eventually hidden win-errors by
raising SkipTest ALAP.
+ submodule.base.py: import classes from `git.objects` instead of
`utils`.
+ had to ++ ulimit 100->110 for the extra code tested (more leaks :-)
+ Centralize is_win detection.
|
| |
|
|
|
|
|
| |
+ Update error-conditions for PY-versions.
+ The purpose is to have NO TC FAILURES (with the minimum possible
conditions).
|
|
|
|
|
| |
+ Collect all "acknowledged" failing TCs on Appveyor and use
"HIDE_WINDOWS_KNOWN_ERRORS" var to hide them.
|
| |
|
|
|
| |
+ PY3.3 fails due to 'too many files open"
|
|\
| |
| |
| | |
+ The actual commits have been re-written and rebased previously.
|
| |
| |
| |
| |
| | |
originally draft committed by mistake in 31fd955dfcc8176fd65f92fa859374387d3e0095
sorry
|
| | |
|
| |
| |
| |
| | |
As it was - many tests were simply not accounted/run at all
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
+ Regression introduced in d84b960982b, by a wrong comment
interpretation.
|
| | |
|
| | |
|
| |
| |
| |
| | |
As it was - many tests were simply not accounted/run at all
|
|\ \
| | |
| | | |
RF: use @functools.wraps within decorators instead of manual __name__ reassignment
|
| |/
| |
| |
| |
| |
| | |
reassignment
@wraps does more and does it right ;)
|
|/ |
|
|
|
| |
+ Just to see Apveyor all green and merge; the TCs HAVE TO BE FIXED.
|
|
|
|
| |
[skip ci]
|
|\
| |
| | |
Test project on Windows with MINGW/Cygwin git (conda2.7&3.4/cpy-3.5)
|
| |
| |
| | |
+ Some cases had restructuring of code.
|
| |\
| |/
|/| |
|
|\ \ |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
[skip ci]
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
+ FIX TestRepo.test_submodule_update():
+ submod: del `.git` file prior overwrite; Windows denied otherwise!
+ FIX TestRepo.test_untracked_files():
+ In the `git add <file>` case, it failed with unicode args on PY2.
Had to
encode them with `locale.getpreferredencoding()` AND use SHELL.
+ cmd: add `shell` into `execute()` kwds, for overriding USE_SHELL per
command.
+ repo: replace blocky `communicate()` in `_clone()` with thread-pumps.
+ test_repo.py: unittestize (almost all) assertions.
+ Replace open --> with open for index (base and TC).
+ test_index.py: Enabled a dormant assertion.
|
| | |
| | |
| | |
| | |
| | |
| | | |
+ Modify lock/read-config-file code to ensure files closed.
+ Use `with GitConfigarser()` more systematically in TCs.
+ Clear any locks left hanging from prev Tcs.
+ Util: mark lock-files as SHORT_LIVED; save some SSDs...
|
| | |
| | |
| | |
| | | |
+ Extract util-method to delete lock-files, also on Windows (will be
needed by TCs).
|
| | |
| | |
| | |
| | |
| | | |
+ Modify lock/read-config-file code to ansure files closed
+ Use `with GitConfigarser()` more systematically in TCs.
+ Clear any locks left hanging from pev Tcs
|
| | |
| | |
| | | |
+ Collect all known commands
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
+ Cannot `index.path` into ENV, it is bytes!
+ The hook TC never runs on linux!
+ Unblock removal of odbfile in perf-large streams TC.
+ Attempt to unblock removal of submodule file by intensive cleaning.
more unblock files
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
+ Unicode PY2/3 issues fixed also in pump stream func.
|
| | |
| | |
| | |
| | |
| | | |
+ No WindowsError exception.
+ Add `test_exc.py` for unicode issues.
+ Single-arg for decoding-streams in pump-func.
|
| | |
| | |
| | |
| | |
| | | |
+ When `universal_lines==True` (515a6b9ccf8) must tel
`handle_process_output` to stop decoding strings.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
+ HookException thrown on Popen, and were missed on Windows.
+ No SHELL on Popen??
+ Minor fixes:
+ Try harder to delete trees - no remorses.
+ Simplify exception reprs.
+ Unittest-ize test_index assertions.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
+ CAUSE: In Windows, Diffs freeze while reading Popen streams,
probably buffers smaller; good-thin(TM) in this case because reading a
Popen-proc from the launching-thread freezes GIL. The alternative to
use `proc.communicate()` also relies on big buffers.
+ SOLUTION: Use `cmd.handle_process_output()` to consume Diff-proc
streams.
+ Retroffited `handle_process_output()` code to support also
byte-streams, both Threading(Windows) and Select/Poll (Posix) paths
updated.
- TODO: Unfortunately, `Diff._index_from_patch_format()` still slurps
input; need to re-phrase header-regexes linewise to resolve it.
|
| | |
| | |
| | |
| | |
| | | |
+ DataDriven TCs for identifying which separate case failed.
+ appveyor: rework matrix, conda3.4 cannot install in develop mode
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
+ Stop using gitdb's respective helper.
+ Fix files chmod(555) which CANNOT DELETE on Windows (but do on Linux).
|