-
-
Notifications
You must be signed in to change notification settings - Fork 109
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
Reduce Output in Atmos Tests #923
base: main
Are you sure you want to change the base?
Changes from all commits
744855f
f0b3c24
908e3ae
260c55c
c6c3f94
2690f6a
7d14d35
d063f45
7a7ad5a
b755565
2a4b207
b7a2f09
7af82ce
f3348c6
1593cd6
bd8839a
fd4602e
22f5523
9419720
c687249
6750c43
6be3195
4a3dd88
2e65cee
debc554
243160f
7f19125
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,3 +135,27 @@ introduction: |- | |
Find all documentation at: [atmos.tools](https://atmos.tools) | ||
|
||
contributors: [] | ||
|
||
testing: | ||
content: |- | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think there's a misunderstanding how the There's no section we look for called Also, after updating the Note, we're going to do this with atmos soon, see: And the confusion here, shows we should have a JSON schema. |
||
## Testing | ||
|
||
### Test Verbosity Control | ||
|
||
The test suite supports three verbosity levels to control output: | ||
|
||
- `quiet`: Minimal output, only shows failures | ||
- `normal`: Standard test output (default) | ||
- `verbose`: Detailed test output with additional debugging information | ||
|
||
You can control the verbosity level using the `ATMOS_TEST_VERBOSITY` environment variable: | ||
|
||
```bash | ||
# Run tests with minimal output | ||
make test ATMOS_TEST_VERBOSITY=quiet | ||
|
||
# Run acceptance tests with verbose output | ||
make testacc ATMOS_TEST_VERBOSITY=verbose | ||
``` | ||
|
||
This is particularly useful when running tests in CI environments or when debugging specific test failures. |
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.
Is testing a supported section in the README.md.tmpl?