Alexander Lanin

Results 35 comments of Alexander Lanin

I wonder whether ccache should provide a mechanism like e.g. `.clang-tidy` or `.clang-format` for those (ENV) settings: look in directory of source file, look in it's parent, look in it's...

If I get your idea right, it's that old cache entries are probably irrelevant. But I think this highly depends on your use case. For example when I switch to...

Same here. By accident I can report, that there are some combinations that will work as well, something like confDir is ".." from buildDir and srcDir is ".." from confDir....

Quick n dirty fix... at least it doesn't abort directly at startup... in `registers-sungrow.yaml` search-replace `"SH8.0RT",` with `"SH8.0RT","SH8.0RT-20",` and add: ``` - response: 0xE12 value: "SH8.0RT-20" ``` to `device_type_code`.

19 days have passed and I have a new view on that. That's how fast the software world changes ;-) Current setup unintentionally allows a powerful reuse of those scripts...

I was missing hard-dependencies since I started experimenting with features, but actually that would be a bad idea. The whole point of features is to avoid god like Dockerfiles. We...

How about fallback to dependencies? Maybe that's some middle ground between hard dependencies and soft dependency order? What I currently do: ```sh if ! type python3 >/dev/null 2>&1; then echo...

It's kind of the same for testing a single feature with a "big" scenarios.json. It would be nice to run those in parallel. I would like to / I do...

Is this a variation of #215 + the ability to have "expect fail"?

Here is a better hack until this is improved (I'm no python expert, but this seems to work fine): ```py def exit_on_exception(func): """Wrap any python function to make it print...