File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def get_html_files(live_site, region):
42
42
43
43
@pytest .fixture ()
44
44
def region ():
45
- return os .environ .get ("FX_REGION" , "US " )
45
+ return os .environ .get ("FX_REGION" , "IT " )
46
46
47
47
48
48
@pytest .fixture ()
@@ -104,9 +104,11 @@ def cc_site_data(live_site, region):
104
104
105
105
106
106
@pytest .fixture
107
- def is_live_site (live_site ):
108
- """Determine if the site is live."""
109
- return live_site != "demo"
107
+ def is_live_site (live_site , region ):
108
+ """Determine if the site is live.
109
+ Treat demo IT as a live site until the doorhanger bug is fixed.
110
+ """
111
+ return live_site != "demo" or region in {"IT" }
110
112
111
113
112
114
@pytest .fixture (scope = "session" )
Original file line number Diff line number Diff line change 21
21
" country" ,
22
22
" email" ,
23
23
" tel"
24
- ],
25
- "skip_regions" : [" IT" ]
24
+ ]
26
25
}
You can’t perform that action at this time.
0 commit comments