Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add lens migration engine to defra #1564
feat: Add lens migration engine to defra #1564
Changes from all commits
87e755b
96ef489
8e72361
54feb84
bd252c9
46310f0
702a417
afd2bb2
0c4b1fc
12b90ae
26818cf
2a352cf
383296e
fddfadb
577c23b
6fd6e02
31de1be
05fcb7e
7fc4a74
a69c039
5cda64b
3dcca1d
ad79cd3
30c7fcf
4992edb
6fb86d8
22be184
490e724
c554737
fc3ce29
8d9c8be
d503cd0
112c628
871f764
058f91e
6fac4e7
013cb03
6965a78
7003496
5c2ef8f
2b1e169
4214319
077eceb
74ab7c6
1e406e4
9fe9e8d
44208bb
897540f
c7d8f5b
1aac0d9
f0f55ff
cd55fb7
548dbb6
5156255
18057e3
4341268
0557fe6
bf95056
6fb6415
09f6825
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
todo: Can you remove this from here and add this to the
test\:coverage:
rule. On line232
. This is for the dependencies of the coverage-generating tool.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.
Why should this only be for the dependencies of the coverage-generating tool, and not the
make test:coverage
command that consumes it? (Also, there is nothing in the file that suggested to me that such a distinction existed)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.
You need this dep as a dep when you are generating coverage not as a dependency to a coverage tool dependency target.
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.
deps\:coverage
is just there for people who want to build half the dependencies for executing themake test:coverage
action? I am not sure I understand you.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.
todo: This rule assumes deps are there. If you see
.github/workflows/detect-change.yml
:Should instead add
make deps:test-all
according to above suggestion and then just change indetect-change.yml
to: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.
But that would hide the dependency from the make file. With the current setup
make test:changes
is independent and complete - including in documenting its own dependencies. Why would I want to hide that/force people to find and look through a yaml file?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.
This would build lens deps every time you run
test:changes
. TheBuild dependencies
already has deps it needs before calling thistest:changes
, that is because it runs it for the first time.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.
Why would I want to have to make two calls to run the change detector? I just want one call, and I want it to run the code in front of me, not a stale binary from ages back. These make actions are very handy outside of the CI as well as within it.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.