-
Notifications
You must be signed in to change notification settings - Fork 1
Added token response persistence in the Redis store #12
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #12 +/- ##
==========================================
- Coverage 93.88% 93.25% -0.63%
==========================================
Files 11 13 +2
Lines 523 519 -4
==========================================
- Hits 491 484 -7
+ Misses 28 20 -8
- Partials 4 15 +11
|
@$(MAKE) -C e2e $(@) | ||
|
||
.PHONY: force-e2e | ||
force-e2e: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is to force execution of the e2e/redis
or e2e/mock
when invoked from the root. You can't set a phony target on patterns (you can't do .PHONY: e2e/%
) and since the e2e/mock
and e2e/redis
folder exists, make simply says everything is up to date.
This target is a PHONY target that is used as a dependency of the e2e/%
to force execution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uoo! I see, nice trick!
No description provided.