File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 8888
8989 - name : Tests
9090 if : ${{ !cancelled() && steps.deps.conclusion == 'success' }}
91- run : |
92- coverage run runtests.py --parallel || coverage run ./runtests.py
93- # tests the extension capability
94- SAMPLE_APP=1 coverage run ./runtests.py --parallel --keepdb --exclude-tag=selenium_tests \
95- || SAMPLE_APP=1 coverage run ./runtests.py --keepdb --exclude-tag=selenium_tests
96- coverage combine
97- coverage xml
91+ run : ./runtests
9892 env :
9993 SELENIUM_HEADLESS : 1
10094 GECKO_LOG : 1
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ Run tests with (make sure you have the :ref:`selenium dependencies
9797
9898.. code-block :: shell
9999
100- ./runtests.py --parallel
100+ ./runtests
101101
102102 Some tests, such as the Selenium UI tests, require a PostgreSQL database
103103to run. If you don't have a PostgreSQL database running on your system,
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # standard tests
5+ coverage run runtests.py --parallel \
6+ || coverage run ./runtests.py
7+ # tests the extension capability
8+ SAMPLE_APP=1 coverage run ./runtests.py \
9+ --parallel --exclude-tag=selenium_tests \
10+ || SAMPLE_APP=1 coverage run ./runtests.py \
11+ --exclude-tag=selenium_tests
12+ coverage combine
13+ coverage xml
You can’t perform that action at this time.
0 commit comments