File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 9898 - name : Tests
9999 if : ${{ !cancelled() && steps.deps.conclusion == 'success' }}
100100 run : |
101- coverage run runtests.py
102- # the next test runs focus on specific backend features, therefore
103- # we can skip selenium tests to improve speed and test consistency
104- SAMPLE_APP=1 coverage run runtests.py --exclude-tag=selenium_tests
105- TIMESERIES_UDP=1 coverage run runtests.py --exclude-tag=selenium_tests
106- coverage combine
107- coverage xml
101+ ./runtests
108102 env :
109103 SELENIUM_HEADLESS : 1
110104 GECKO_LOG : 1
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ Run tests with (make sure you have the :ref:`selenium dependencies
105105
106106.. code-block :: shell
107107
108- ./runtests.py # using --parallel is not supported in this module
108+ ./runtests # using --parallel is not supported in this module
109109
110110 Run quality assurance tests with:
111111
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ coverage run runtests.py
5+
6+ # the next test runs focus on specific backend features, therefore
7+ # we can skip selenium tests to improve speed and test consistency
8+ SAMPLE_APP=1 coverage run runtests.py --exclude-tag=selenium_tests
9+ TIMESERIES_UDP=1 coverage run runtests.py --exclude-tag=selenium_tests
10+
11+ coverage combine
12+ coverage xml
You can’t perform that action at this time.
0 commit comments