Alexey Klimkin

Results 12 comments of Alexey Klimkin

semver tags are convenient for referring to particular release of the library. semver also helps making reproducible builds. Using HEAD as versioning strategy is really a choice of a user,...

This would also be useful for better handling of Ctrl-C. Currently all output is lost if the build process is interrupted. Make it as an option?

@oberstet Would you consider using an invisible character to test the terminal device? For example `\0` or `\r`? This would minimize output pollution.

Or a simple check if it's writable? ```python import os os.access('/dev/tty', os.W_OK) ```

The issue with the current implementation is that it prints new lines even if not using `--debug-lifecycle`. To keep the code to the same meaning, we can do a lazy...

Doesn't work for me as well, always uses default PATH

My attempt to implement sorting using the previous run duration: https://github.com/klimkin/pytest-slowest-first

Below, after tracking the file you must add it again to create proper commit. I don't think LFS can prevent this kind of escape unless we use some kind of...

It doesn't seem LFS is checking for inconsistencies. You can push `.gitattributes` without converting to pointers. Looking at the LFS pre-push hook https://github.com/git-lfs/git-lfs/blob/b96d77b9563a8fd10c4e03f8f8898a0777ead9a6/commands/command_pre_push.go#L19, it only handles the logic of pushing...

There are two cases to catch: 1. Files with `lfs` attribute, but committed as general objects 2. Files without `lfs` attribute, but committed as LFS pointers @asottile Are you suggesting...