This repository was archived by the owner on Mar 16, 2024. It is now read-only.
Testing
#575
Replies: 1 comment
-
Yes this is definitely a feature we have considered. containers: app: {
build: "."
if args.test {
command: app "--enable-debug"
}
}
tests: {
quick: {
build: {
context: "."
target: "test"
}
command: "make test"
dependsOn: ["app"]
} So the idea would be when you run Does this design seem good? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Where do you see testing happening for an acorn app, specifically:
build tests, ie: things that need to run before the app container is built. Suppose these need to run in a container too. Would this happen outside acorn, or part of the acorn dev cycle? Either way, perhaps acorn's buildkit container could be used to build and run these tests?
smoke tests post deployment: a job possibly? If so, would this be part of an acorn deployment? Is it possible to get feedback of their failure/success?
Thank you! 🙏
Beta Was this translation helpful? Give feedback.
All reactions