File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed
py/test/selenium/webdriver/edge Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,6 @@ jobs:
125125 include :
126126 - browser : safari
127127 os : macos
128- - browser : edge
129- os : macos
130128 with :
131129 name : Integration Tests (${{ matrix.browser }}, ${{ matrix.os }})
132130 browser : ${{ matrix.browser }}
Original file line number Diff line number Diff line change 1515# specific language governing permissions and limitations
1616# under the License.
1717
18- import pytest
1918
20- from selenium .webdriver import Edge
21-
22-
23- @pytest .fixture
24- def driver ():
25- driver = Edge ()
26- yield driver
27- driver .quit ()
19+ def pytest_generate_tests (metafunc ):
20+ if "driver" in metafunc .fixturenames and metafunc .config .option .drivers :
21+ metafunc .parametrize ("driver" , metafunc .config .option .drivers , indirect = True )
You can’t perform that action at this time.
0 commit comments