Skip to content

Commit 84dd100

Browse files
doc: add echo to the test script
Signed-off-by: thiswillbeyourgithub <[email protected]>
1 parent 7f3a7bf commit 84dd100

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/run_all_tests.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,17 @@ mkdir temp
2626
cd temp
2727

2828
# start tests
29+
echo "\nTesting CLI (basic)"
2930
python -m pytest -n auto --disable-warnings --show-capture=no --code-highlight=yes --tb=short -m basic ../test_cli.py
31+
echo "\nTesting parsing (basic)"
3032
python -m pytest -n auto --disable-warnings --show-capture=no --code-highlight=yes --tb=short -m basic ../test_parsing.py
33+
echo "\nTesting wdoc (basic)"
3134
python -m pytest -n auto --disable-warnings --show-capture=no --code-highlight=yes --tb=short -m basic ../test_wdoc.py
35+
echo "\nTesting vectorstores (api)"
3236
python -m pytest -n auto --disable-warnings --show-capture=no --code-highlight=yes --tb=short -m api ../test_vectorstores.py
37+
echo "\nTesting wdoc (api)"
3338
python -m pytest -n auto --disable-warnings --show-capture=no --code-highlight=yes --tb=short -m api ../test_wdoc.py
39+
echo "\nDone with first round of pytest!"
3440

3541
cd ..
3642

0 commit comments

Comments
 (0)