File tree 2 files changed +4
-5
lines changed
tests/jdi_uitests_webtests/test
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 16
16
strategy :
17
17
matrix :
18
18
python-version : ['3.11']
19
+ browser : [chrome, firefox]
19
20
20
21
steps :
21
22
- uses : actions/checkout@v4
31
32
run : |
32
33
pytest -v --cov=. --cov-config=.coveragerc --cov-report=html -m unit
33
34
shell : bash
34
- - name : Run tests excluding unit tests chrome
35
+ - name : Run tests excluding ' unit' tests on ${{ matrix.browser }}
35
36
run : |
36
- pytest -v -m "not unit" --browser chrome
37
- - name : Run tests excluding unit tests firefox
38
- run : |
39
- pytest -v -m "not unit" --browser firefox
37
+ pytest -v -m "not unit" --browser ${{ matrix.browser }}
40
38
shell : bash
41
39
- name : Save debug log file
42
40
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ def site():
16
16
logger .info ("Run Tests from '{}' file" .format (__name__ ))
17
17
EpamJDISite .home_page .open ()
18
18
EpamJDISite .login_page .submit (User .default ())
19
+ print (WebSettings .get_driver_factory ().current_driver .name )
19
20
20
21
yield
21
22
You can’t perform that action at this time.
0 commit comments