Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/scripts/check_codecov_coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ require_path "$unit_profile" "^${ROOT_MODULE//./[.]}/integration/.*[.]go:" "inte
require_path "$unit_profile" "^${ROOT_MODULE//./[.]}/docs/readme/testcounts/.*[.]go:" "tagged documentation tooling source"

require_covered_path "^${ROOT_MODULE//./[.]}/queue[.]go:" "representative root source" "${expected_profiles[@]}"
require_covered_path "^${ROOT_MODULE//./[.]}/bus/testhooks_integration[.]go:" "root integration-tagged bus fixture" "$unit_profile"
require_covered_function "$unit_profile" "docs/readme/testcounts/main.go" "loadIntegrationCountManifest" "generated test-count evidence validation"
for driver in "${driver_modules[@]}"; do
require_covered_path "^${ROOT_MODULE//./[.]}/driver/$driver/.*[.]go:" "driver/$driver source" "${expected_profiles[@]}"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<img src="https://img.shields.io/github/v/tag/goforj/queue?label=version&sort=semver" alt="Latest tag">
<a href="https://codecov.io/gh/goforj/queue"><img src="https://codecov.io/gh/goforj/queue/graph/badge.svg?token=40Z5UQATME"/></a>
<!-- test-count:embed:start -->
<img src="https://img.shields.io/badge/unit_tests-978-brightgreen" alt="Unit tests (executed count)">
<img src="https://img.shields.io/badge/integration_tests-631-blue" alt="Integration tests (executed count)">
<img src="https://img.shields.io/badge/unit_tests-895-brightgreen" alt="Unit tests (executed count)">
<img src="https://img.shields.io/badge/integration_tests-610-blue" alt="Integration tests (executed count)">
<!-- test-count:embed:end -->
</p>

Expand Down Expand Up @@ -2091,7 +2091,7 @@ q, err := redisqueue.NewWithConfig(
Addr: "127.0.0.1:6379", // required
Password: "", // optional; default empty
DB: 0, // optional; default 0
ServerLogger: nil, // optional; default backend logger
Logger: nil, // optional; default backend logger
ServerLogLevel: redisqueue.ServerLogLevelDefault, // optional
},
queue.WithWorkers(4), // optional; default: runtime.NumCPU() (min 1)
Expand Down Expand Up @@ -2362,7 +2362,7 @@ FindChain returns workflow state created by the fake's production engine.

#### <a id="queue-newfake"></a>NewFake

NewFake creates the canonical fake used directly and by deprecated testing adapters.
NewFake creates the canonical fake for direct and workflow tests.

```go
fake := queue.NewFake()
Expand Down
Loading
Loading