Skip to content

Commit 68f4c07

Browse files
Actions
1 parent a8b7d77 commit 68f4c07

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/MAVIS_TEST.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
4646
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4747
- name: Test with pytest
48+
continue-on-error: true
4849
env:
4950
HEADLESS: ${{ vars.HEADLESS }}
5051
CAPTURE_SCREENSHOTS: ${{ vars.CAPTURE_SCREENSHOTS }}
@@ -57,18 +58,24 @@ jobs:
5758
TEST_USERNAME: ${{ secrets.TEST_USERNAME }}
5859
API_TOKEN: ${{ secrets.API_TOKEN }}
5960
run: |
60-
echo "Starting tests on Chromium"
61+
echo "::group::Chromium"
6162
pytest --browser_or_device chromium
62-
echo "Starting tests on Chrome"
63+
echo "::endgroup::"
64+
echo "::group::Chrome"
6365
pytest --browser_or_device chrome
64-
echo "Starting tests on Firefox"
66+
echo "::endgroup::"
67+
echo "::group::Firefox"
6568
pytest --browser_or_device firefox
66-
echo "Starting tests on iPhone 12"
69+
echo "::endgroup::"
70+
echo "::group::iPhone 12"
6771
pytest -m mobile --browser_or_device iphone_12
68-
echo "Starting tests on iPhone 11"
72+
echo "::endgroup::"
73+
echo "::group::iPhone 11"
6974
pytest -m mobile --browser_or_device iphone_11
70-
echo "Starting tests on Pixel 5"
75+
echo "::endgroup::"
76+
echo "::group::Pixel 5"
7177
pytest -m mobile --browser_or_device pixel_5
78+
echo "::endgroup::"
7279
- name: Upload report
7380
uses: actions/upload-artifact@v4
7481
with:

pytest.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ markers =
2121
consent
2222
cohorts
2323
childlist
24+
classlist
2425
vaccsbatch
2526
rav
2627
bugs

0 commit comments

Comments
 (0)