Skip to content

Commit 00f3bf5

Browse files
committed
set default value for global flag
1 parent 92a9aee commit 00f3bf5

File tree

25 files changed

+34
-9
lines changed

25 files changed

+34
-9
lines changed

packages/aws-library/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ test = pytest
1515

1616
[tool:pytest]
1717
asyncio_mode = auto
18+
asyncio_default_fixture_loop_scope = function
1819

1920
[mypy]
2021
plugins =

packages/common-library/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ test = pytest
1515

1616
[tool:pytest]
1717
asyncio_mode = auto
18+
asyncio_default_fixture_loop_scope = function
1819
markers =
1920
diagnostics: "can be used to run diagnostics against deployed data (e.g. database, registry etc)"
2021
testit: "marks test to run during development"

packages/dask-task-models-library/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ test = pytest
1515

1616
[tool:pytest]
1717
asyncio_mode = auto
18+
asyncio_default_fixture_loop_scope = function

packages/models-library/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ test = pytest
1515

1616
[tool:pytest]
1717
asyncio_mode = auto
18+
asyncio_default_fixture_loop_scope = function
1819
markers =
1920
diagnostics: "can be used to run diagnostics against deployed data (e.g. database, registry etc)"
2021
testit: "marks test to run during development"

packages/notifications-library/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ test = pytest
1515

1616
[tool:pytest]
1717
asyncio_mode = auto
18+
asyncio_default_fixture_loop_scope = function
1819

1920
[mypy]
2021
plugins =

packages/postgres-database/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ commit_args = --no-verify
99

1010
[tool:pytest]
1111
asyncio_mode = auto
12+
asyncio_default_fixture_loop_scope = function
1213
addopts = -W error::sqlalchemy.exc.SAWarning
1314
markers =
1415
acceptance_test: "marks tests as 'acceptance tests' i.e. does the system do what the user expects? Typically those are workflows."

packages/service-library/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ test = pytest
1616
[tool:pytest]
1717
addopts = --strict-markers
1818
asyncio_mode = auto
19+
asyncio_default_fixture_loop_scope = function
1920
markers =
2021
testit: "marks test to run during development"
2122
performance_test: "performance test"

packages/simcore-sdk/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ test = pytest
1515

1616
[tool:pytest]
1717
asyncio_mode = auto
18+
asyncio_default_fixture_loop_scope = function
1819
markers =
1920
slow: marks tests as slow (deselect with '-m "not slow"')
2021
acceptance_test: "marks tests as 'acceptance tests' i.e. does the system do what the user expects? Typically those are workflows."

services/agent/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ commit_args = --no-verify
99

1010
[tool:pytest]
1111
asyncio_mode = auto
12+
asyncio_default_fixture_loop_scope = function
1213

1314
[mypy]
1415
plugins =

services/api-server/setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ commit_args = --no-verify
99

1010
[tool:pytest]
1111
asyncio_mode = auto
12+
asyncio_default_fixture_loop_scope = function
1213
addopts = --strict-markers
13-
markers =
14+
markers =
1415
slow: marks tests as slow (deselect with '-m "not slow"')
1516
acceptance_test: "marks tests as 'acceptance tests' i.e. does the system do what the user expects? Typically those are workflows."
1617
testit: "marks test to run during development"
1718

1819
[mypy]
19-
plugins =
20+
plugins =
2021
pydantic.mypy
2122
sqlalchemy.ext.mypy.plugin

0 commit comments

Comments
 (0)