diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 17f0b6580c6..8242a8d8749 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -133,7 +133,7 @@ jobs: with: max_attempts: 3 retry_on: error - timeout_minutes: 40 + timeout_minutes: 50 command: | testenv\Scripts\Activate.ps1 Set-Item -Path env:PYTHONMALLOC -Value "malloc" diff --git a/pyaedt/edb_core/edb_data/primitives_data.py b/pyaedt/edb_core/edb_data/primitives_data.py index 4b29f1c4dbc..a5170bdbc72 100644 --- a/pyaedt/edb_core/edb_data/primitives_data.py +++ b/pyaedt/edb_core/edb_data/primitives_data.py @@ -1053,14 +1053,14 @@ def in_polygon( class EdbText(EDBPrimitivesMain, TextDotNet): def __init__(self, raw_primitive, core_app): - TextDotNet.__init__(self, self._app, raw_primitive) EDBPrimitives.__init__(self, raw_primitive, core_app) + TextDotNet.__init__(self, self._app, raw_primitive) class EdbBondwire(EDBPrimitivesMain, BondwireDotNet): def __init__(self, raw_primitive, core_app): - BondwireDotNet.__init__(self, self._app, raw_primitive) EDBPrimitives.__init__(self, raw_primitive, core_app) + BondwireDotNet.__init__(self, core_app, raw_primitive) class EDBArcs(object):