Sebastian Kreft

Results 91 comments of Sebastian Kreft

I found the cause of this issue. The problem is that the method of Stub _property_called_name relies on getframeinfo of module inspect. This module relies also on function os.path.exists. So...

@thibaut-singlefile Thanks for the report. It's rather hard to maintain these scripts across oses. I started the development while I was using Linux, and then there were some PRs to...

@w4-sjcho out of curiosity, what CI server are you using?

@hustlijian thanks for the pr. I left some comments. Something that's missing though is to configure CI to run on windows.

@siebert I don't see how this PR is handling multiple images. Note though that instead of using that simplistic script a much better alternative would be to use https://github.com/sk-/optimage. Thanks...

@w4-sjcho This is another issue. I created #130 .

For the ones looking on how to integrate `git-lint` in a CI environment, I just integrated it into Travis CI, (see the [.travis.yml](https://github.com/sk-/git-lint/blob/master/.travis.yml#L28-L31) config). Basically you do: ``` git reset...

The feature of accepting commits or a commit range is feasible and most of the infrastructure is already there. The `last-commit` flag is implemented by passing around a single commit...

Not at the moment. I'm exploring though some git recipes, with which you could uncommit (while preserving the changes) the last commits so that you can use it in a...

Hi @eldamir and @emailallau , I just [enabled `git-lint` in travis CI](https://github.com/sk-/git-lint/blob/master/.travis.yml#L28-L31) .What I did is [documented in the homepage](https://github.com/sk-/git-lint#travis-configuration), but is basically adding the step ``` git reset --soft...