You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stdout & stderr are piped to /out at the root directory of the overall repo
This may seem a little disconcerted, especially given, that there are at present no links between the two - nor an interface for navigating all of the integration test's triggered outputs.
Suggested Changes
It would be good to link to these outputs from the summary shown in sbt for the integrationTest task. I.e. add a terminal hyperlink (file:/// pointing at the outputs, at least it will work on linux) to an html report that doesn't look ugly, the html report hosting a row per project, each row comprising:
the project's name
test status for/with it
elapsed time run or anything I've forgotten here
link to its run's standard output file (currently being produced in /out).
link to its resulting canve-data directory (currently under /sbt-plugin-integration-test/target/scala-2.11/classes/integration-test-projects/PROJECT_NAME)
If you're aware of a framework for hosting and proper navigation of test results, which seamlessly affords the above without sucking, it can be implemented with/in such framework, but otherwise simple html and css would do and avoid all the boilerplate and dependencies coming with a framework.
Also out is a sucky name for an integration tests output directory in the root of the project, and should be changed to something like integration-test-log or canve-integration-test-log, it it remains written to the root of the integration test project.
The text was updated successfully, but these errors were encountered:
Maybe just rename out to integration-test-out at first, providing scripted access to a project's canve-data/ with the project name as argument or such..
At present time, running the the
integrationTest
task ends up creating files in two locations, which aren't referred to by the task's sbt output:canve-data
under/out
at the root directory of the overall repoThis may seem a little disconcerted, especially given, that there are at present no links between the two - nor an interface for navigating all of the integration test's triggered outputs.
Suggested Changes
It would be good to link to these outputs from the summary shown in sbt for the
integrationTest
task. I.e. add a terminal hyperlink (file:///
pointing at the outputs, at least it will work on linux) to an html report that doesn't look ugly, the html report hosting a row per project, each row comprising:/out
)./sbt-plugin-integration-test/target/scala-2.11/classes/integration-test-projects/PROJECT_NAME
)If you're aware of a framework for hosting and proper navigation of test results, which seamlessly affords the above without sucking, it can be implemented with/in such framework, but otherwise simple html and css would do and avoid all the boilerplate and dependencies coming with a framework.
Also
out
is a sucky name for an integration tests output directory in the root of the project, and should be changed to something likeintegration-test-log
orcanve-integration-test-log
, it it remains written to the root of the integration test project.The text was updated successfully, but these errors were encountered: