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

creek-service / creek-test / #98
96%

Build:
DEFAULT BRANCH: main
Ran 24 May 2022 11:00AM UTC
Jobs 1
Files 23
Run time 7s
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

pending completion
#98

push

github-actions

web-flow
Enhance conformity testing: common excludes (#53)

* Enhance conformity testing: common excludes

Enhance conformity testing to allow classes and packages to be excluded with one call from all checks that support such exclusions.

So:

```java
ConformityTester.builder(ModuleTest.class)
   .withCustom(
      "Package contains test classes that intentionally break checks",
      CheckExportedPackages.builder()
         .excludedPackages(NotExported.class.getPackageName()))
   .withCustom(
      "Package contains test classes that intentionally break checks",
      CheckConstructorsPrivate.builder()
         .excludedPackages(NotExported.class.getPackageName()))
   .check();
```

...becomes...

```java
ConformityTester.builder(ModuleTest.class)
   .withExcludedPackages(
      "Package contains test classes that intentionally break checks",
      NotExported.class.getPackageName())
   .check();
```

* coverage

* coverage

405 of 426 relevant lines covered (95.07%)

0.95 hits per line

Jobs
ID Job ID Ran Files Coverage
1 #98.1 24 May 2022 11:00AM UTC 0
95.07
Source Files on build #98
Detailed source file information is not available for this build.
  • Back to Repo
  • Build #98
  • a0bac262 on github
  • Prev Build on main
  • Next Build on main
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