• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

kevinoid / NetCoreProject / 9505274511
86%

Build:
DEFAULT BRANCH: main
Ran 13 Jun 2024 07:01PM UTC
Jobs 2
Files 1
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

13 Jun 2024 06:56PM UTC coverage: 85.714%. Remained the same
9505274511

push

github

kevinoid
.editorconfig: Suggest for loop condition (S1994)

Although not checking the value changed by the for_iterator expression
in the for_condition expression of a for loop can be an error, it can
also be intentional behavior, such as using a variable to count retries:

```csharp
for (int attempt = 0; ; attempt++)
{
    try
    {
	...
    }
    catch (Exception)
    when (attempt < 3)
    {
	...
    }
}
```

Although this could be converted to a while statement, it would need an
additional level of indentation to limit the scope of the variable to
the loop.  Doing that, or disabling the warning in every case, seems to
outweigh the value added by this check.  Leave it as a suggestion only.

Signed-off-by: Kevin Locke <kevin@kevinlocke.name>

3 of 4 branches covered (75.0%)

Branch coverage included in aggregate %.

3 of 3 relevant lines covered (100.0%)

5.0 hits per line

Jobs
ID Job ID Ran Files Coverage
1 windows-latest_* - 9505274511.1 13 Jun 2024 07:04PM UTC 0
85.71
GitHub Action Run
2 ubuntu-latest_* - 9505274511.2 13 Jun 2024 07:01PM UTC 0
85.71
GitHub Action Run
Source Files on build 9505274511
Detailed source file information is not available for this build.
  • Back to Repo
  • Github Actions Build #9505274511
  • 53aea38d on github
  • Prev Build on main (#9468596417)
  • Next Build on main (#9513293828)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc