Skip to content

Commit

Permalink
feat: disable headless when running on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Dec 18, 2023
1 parent 42121c9 commit e5ccdf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bugmon/evaluator_configs/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def iterate(
evaluator = BrowserEvaluator(
testcase,
env=env_variables,
headless="default" if system() == "Windows" else "xvfb",
headless=None if system() == "Windows" else "xvfb",
prefs=prefs,
repeat=10,
relaunch=1,
Expand Down

0 comments on commit e5ccdf5

Please sign in to comment.