Skip to content

Commit 23b7a51

Browse files
committed
Trying to solve with conda
1 parent 38aa2b0 commit 23b7a51

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

conda/base.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ dependencies:
77
- awscli
88
- docker-compose
99
- git
10+
- travis
11+
- chrome
1012
- make
1113
- sqlite
1214
- webdriver-manager

tests/test_webapp.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from selenium import webdriver
22
from selenium.webdriver.common.by import By
33
from selenium.webdriver.chrome.options import Options
4-
from webdriver_manager.chrome import ChromeDriverManager
54
import unittest
65

76

@@ -11,7 +10,6 @@ def setUpClass(cls):
1110
chrome_options = Options()
1211
chrome_options.add_argument("--disable-gpu")
1312
chrome_options.add_argument("--headless")
14-
chrome_options.binary_location = ChromeDriverManager().install()
1513
cls.driver = webdriver.Chrome()
1614
cls.driver.get("http://localhost:8088")
1715

0 commit comments

Comments
 (0)