Skip to content

Commit

Permalink
Merge pull request #1551 from plotly/quieten-browser-init
Browse files Browse the repository at this point in the history
Quieten browser init in test setup
  • Loading branch information
alexcjohnson authored Feb 9, 2021
2 parents 1ea21c7 + aab6192 commit 5ef5349
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dash/testing/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ def __init__(
)
self.percy_runner.initialize_build()

logger.info("initialize browser with arguments")
logger.info(" headless => %s", self._headless)
logger.info(" download_path => %s", self._download_path)
logger.info(" percy asset root => %s", os.path.abspath(percy_assets_root))
logger.debug("initialize browser with arguments")
logger.debug(" headless => %s", self._headless)
logger.debug(" download_path => %s", self._download_path)
logger.debug(" percy asset root => %s", os.path.abspath(percy_assets_root))

def __enter__(self):
return self
Expand Down
1 change: 1 addition & 0 deletions requires-testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pytest-mock>=2.0.0,<3;python_version=="2.7"
lxml>=4.6.2
selenium>=3.141.0
percy>=2.0.2
cryptography<3.4;python_version<"3.7"
requests[security]>=2.21.0
beautifulsoup4>=4.8.2,<=4.9.3;python_version=="2.7"
beautifulsoup4>=4.8.2;python_version>="3.0"
Expand Down

0 comments on commit 5ef5349

Please sign in to comment.