Skip to content

Commit 251c0c3

Browse files
committed
CI: Implement if run matrix browser undetected
1 parent 8ff01e6 commit 251c0c3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,11 @@ jobs:
7070
if: matrix.browser == 'edge'
7171

7272
- name: Run Tests in ${{ matrix.browser }}
73+
if: matrix.browser == 'edge' || matrix.browser == 'chrome' || matrix.browser == 'firefox'
7374
run: |
7475
pytest -n 2 -v -vrxs --headless=${{ matrix.headless }} --browser=${{ matrix.browser }}
76+
77+
- name: Run Tests in ${{ matrix.browser }}
78+
if: matrix.browser == 'undetected_chrome'
79+
run: |
80+
pytest -v -vrxs --headless=${{ matrix.headless }} --browser=${{ matrix.browser }}

0 commit comments

Comments
 (0)