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 c1f0ede commit 7ab720fCopy full SHA for 7ab720f
dash/testing/browser.py
@@ -159,7 +159,10 @@ def percy_snapshot(
159
"""
160
if widths is None:
161
widths = [1280]
162
- snapshot_name = f"{name} - py{sys.version_info.major}.{sys.version_info.minor}"
+
163
+ # py3.9 hardcoded here to keep snapshot names the same accorss
164
+ # future python upgrades
165
+ snapshot_name = f"{name} - py3.9"
166
logger.info("taking snapshot name => %s", snapshot_name)
167
try:
168
if wait_for_callbacks:
0 commit comments