Skip to content

Commit 1b7f2ce

Browse files
run_tests.sh is updated (-vvv)
1 parent ee4e74a commit 1b7f2ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

run_tests.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ rm -f $COVERAGE_FILE
2626
pip install coverage
2727

2828
# run tests (PATH)
29-
time coverage run -a -m pytest -l -v -n 4 -k "${TEST_FILTER}"
29+
time coverage run -a -m pytest -l -vvv -n 4 -k "${TEST_FILTER}"
3030

3131
# run tests (PG_BIN)
3232
PG_BIN=$(pg_config --bindir) \
33-
time coverage run -a -m pytest -l -v -n 4 -k "${TEST_FILTER}"
33+
time coverage run -a -m pytest -l -vvv -n 4 -k "${TEST_FILTER}"
3434

3535
# run tests (PG_CONFIG)
3636
PG_CONFIG=$(pg_config --bindir)/pg_config \
37-
time coverage run -a -m pytest -l -v -n 4 -k "${TEST_FILTER}"
37+
time coverage run -a -m pytest -l -vvv -n 4 -k "${TEST_FILTER}"
3838

3939
# test pg8000
4040
pip uninstall -y psycopg2
4141
pip install pg8000
4242
PG_CONFIG=$(pg_config --bindir)/pg_config \
43-
time coverage run -a -m pytest -l -v -n 4 -k "${TEST_FILTER}"
43+
time coverage run -a -m pytest -l -vvv -n 4 -k "${TEST_FILTER}"
4444

4545
# show coverage
4646
coverage report

0 commit comments

Comments
 (0)