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 :
0 commit comments