hlovdal

Results 39 issues of hlovdal

Document the existing `GIT_TEST_VERBOSITY` and add two new `GIT_TEST_NAME` plus `GIT_TEST_PREVIOUS_CHECKED_OUT_COMMIT`. I think the last one should be able to solve issue #13. Not automatically out of the box like...

As mentioned in issue #11, the `forget-results` command's default behaviour of deleting everything will be super dangerous if it ever gains support for deleting individual results. I have now added...

For Arduino target code there is no difference between int and pointer sizes but it matters when compiling the code for unit test on a 64bit linux host computer: ```shell...

The "pending" pull request [Fix for MODBUS_GET_* macro](https://github.com/stephane/libmodbus/pull/441) is merged and included upstream.

This started by trying to run the integration tests locally, however despite whatever problems I might have setting up a working testing environment, I found that there must be some...

https://www.app-metrics.io/getting-started/filtering-metrics/ gives the following example of configuring multiple reporters ```csharp var metrics = new MetricsBuilder() .Report.ToConsole(options => options.Filter = new MetricsFilter().WhereContext("Console")) .Report.ToTextFile(options => options.Filter = new MetricsFilter().WhereContext("TextFile")) .Build(); ``` I...

new feature
up for grabs

Running `npm audit` on the branch `latest` as of writing this gives ```text found 72 vulnerabilities (29 low, 27 moderate, 16 high) in 6893 scanned packages ``` This pull request...

Running `npm install` with node.js version 8 and later works fine, but fails with version 6. Steps to reproduce: ``` mkdir /tmp/reproduce cd /tmp/reproduce wget https://nodejs.org/dist/v6.14.4/node-v6.14.4-linux-x86.tar.xz tar xJf node-v6.14.4-linux-x86.tar.xz export...

https://ci.appveyor.com/project/RoarFredriksen/amstomqttbridge/build/1.0.18: ```bash Build started git clone -q https://github.com/roarfred/AmsToMqttBridge.git C:\projects\amstomqttbridge git fetch -q origin +refs/pull/37/merge: git checkout -qf FETCH_HEAD Specify which project or solution file to use because the folder contains...

help wanted

The original calculation ```text last(//system.swap.free[memAvailSwap.0]) / last(//system.swap.total[memTotalSwap.0]) * 100 ``` will fail with a divide by zero error when `system.swap.total[memTotalSwap.0]` equals zero. To avoid that I changed the calculation to...