We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3fede7 commit a3d5a93Copy full SHA for a3d5a93
.github/workflows/main.yml
@@ -18,8 +18,8 @@ jobs:
18
run: |
19
python -m pip install --upgrade pip
20
pip install -r requirements.txt
21
- pip install pytest-cov # Para coverage
22
- pip install webdriver-manager # Para browsers si lo usas aún
+ pip install pytest-cov
+ pip install webdriver-manager
23
- name: Install Allure
24
25
wget https://github.com/allure-framework/allure2/releases/download/2.25.0/allure-2.25.0.zip
test/conftest.py
@@ -63,7 +63,6 @@ def browser_driver(request):
63
edge_options.add_experimental_option("excludeSwitches", ["enable-automation"])
64
65
driver = webdriver.Edge(options=edge_options)
66
-
67
def fin():
68
if driver:
69
try:
0 commit comments