We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 857e329 commit c335601Copy full SHA for c335601
tests/test_integration.py
@@ -533,7 +533,8 @@ class DebugToolbarLiveTestCase(StaticLiveServerTestCase):
533
def setUpClass(cls):
534
super().setUpClass()
535
options = Options()
536
- options.headless = bool(os.environ.get("CI"))
+ if os.environ.get("CI"):
537
+ options.add_argument("-headless")
538
cls.selenium = webdriver.Firefox(options=options)
539
540
@classmethod
tox.ini
@@ -23,7 +23,7 @@ deps =
23
Jinja2
24
html5lib
25
pygments
26
- selenium
+ selenium>=4.8.0
27
sqlparse
28
passenv=
29
CI
0 commit comments