Skip to content

Commit a3d5a93

Browse files
committed
add allure to all tests
1 parent b3fede7 commit a3d5a93

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install -r requirements.txt
21-
pip install pytest-cov # Para coverage
22-
pip install webdriver-manager # Para browsers si lo usas aún
21+
pip install pytest-cov
22+
pip install webdriver-manager
2323
- name: Install Allure
2424
run: |
2525
wget https://github.com/allure-framework/allure2/releases/download/2.25.0/allure-2.25.0.zip

test/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ def browser_driver(request):
6363
edge_options.add_experimental_option("excludeSwitches", ["enable-automation"])
6464

6565
driver = webdriver.Edge(options=edge_options)
66-
6766
def fin():
6867
if driver:
6968
try:

0 commit comments

Comments
 (0)