File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sdk/python/tests/integration/registration Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ def minio_registry() -> Registry:
125125logger = logging .getLogger (__name__ )
126126
127127
128- @pytest .fixture (scope = "session " )
128+ @pytest .fixture (scope = "function " )
129129def pg_registry ():
130130 container = (
131131 DockerContainer ("postgres:latest" )
@@ -144,7 +144,7 @@ def pg_registry():
144144 container .stop ()
145145
146146
147- @pytest .fixture (scope = "session " )
147+ @pytest .fixture (scope = "function " )
148148def pg_registry_async ():
149149 container = (
150150 DockerContainer ("postgres:latest" )
@@ -188,7 +188,7 @@ def _given_registry_config_for_pg_sql(
188188 )
189189
190190
191- @pytest .fixture (scope = "session " )
191+ @pytest .fixture (scope = "function " )
192192def mysql_registry ():
193193 container = MySqlContainer ("mysql:latest" )
194194 container .start ()
@@ -200,7 +200,7 @@ def mysql_registry():
200200 container .stop ()
201201
202202
203- @pytest .fixture (scope = "session " )
203+ @pytest .fixture (scope = "function " )
204204def mysql_registry_async ():
205205 container = MySqlContainer ("mysql:latest" )
206206 container .start ()
You can’t perform that action at this time.
0 commit comments