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
High level commands such as web test run use stdout for informing to the human user. Therefore, it is not easy to pass the re-usable data to other process via pipe.
We could use stderr for logging and stdout for machine-readable information but such convention will break easily. Also, machine-readable information is not needed for human.
Thus, we should put such data on data directory like ~/.data/autify/output/web-test-run-<timestamp>-<pid>.json then print the location as a log. The other process like CI/CD integration can parse the file location from log easily and get the output in json format.
The text was updated successfully, but these errors were encountered:
High level commands such as
web test run
use stdout for informing to the human user. Therefore, it is not easy to pass the re-usable data to other process via pipe.We could use stderr for logging and stdout for machine-readable information but such convention will break easily. Also, machine-readable information is not needed for human.
Thus, we should put such data on data directory like
~/.data/autify/output/web-test-run-<timestamp>-<pid>.json
then print the location as a log. The other process like CI/CD integration can parse the file location from log easily and get the output in json format.The text was updated successfully, but these errors were encountered: