Skip to content

Commit ed183ca

Browse files
Do not skip integration tests in CI (#390)
1 parent 5ae3811 commit ed183ca

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

src/dipdup/utils/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,6 @@ def is_importable(module: str, obj: str) -> bool:
188188
return False
189189

190190

191-
def skip_ci(fn) -> Callable[..., Any]:
192-
if os.environ.get('CI'):
193-
return skip('CI environment, skipping')(fn)
194-
return fn
195-
196-
197191
def exclude_none(config_json: Any) -> Any:
198192
if isinstance(config_json, (list, tuple)):
199193
return [exclude_none(i) for i in config_json if i is not None]

tests/integration_tests/test_codegen.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
from dipdup.config import DipDupConfig
99
from dipdup.dipdup import DipDup
10-
from dipdup.utils import skip_ci
1110

1211
configs = [
1312
'hic_et_nunc',
@@ -18,7 +17,6 @@
1817
]
1918

2019

21-
@skip_ci
2220
class CodegenTest(IsolatedAsyncioTestCase):
2321
async def asyncTearDown(self) -> None:
2422
for name in configs:

tests/integration_tests/test_hasura.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@
1212
from dipdup.config import PostgresDatabaseConfig
1313
from dipdup.dipdup import DipDup
1414
from dipdup.hasura import HasuraGateway
15-
from dipdup.utils import skip_ci
1615
from dipdup.utils.database import tortoise_wrapper
1716

1817

19-
@skip_ci
2018
class HasuraTest(IsolatedAsyncioTestCase):
2119
maxDiff = None
2220

0 commit comments

Comments
 (0)