-
Notifications
You must be signed in to change notification settings - Fork 139
Closed
Labels
CI/CDRelated with CICD, Github Actions, etcRelated with CICD, Github Actions, etc
Milestone
Description
MAPDL nightly check is broken since #991 was approved and merged.
The reason seems to be in the test_database_start_stop
function.
def test_database_start_stop(mapdl):
if mapdl._server_version < (0, 4, 1): # 2021R2
pytest.skip("requires 2021R2 or newer")
# verify it can be created twice
mapdl.prep7()
for _ in range(2):
database = MapdlDb(mapdl)
assert not database.active # This fails
database.start()
assert database.active
I'm looking into this.
Metadata
Metadata
Assignees
Labels
CI/CDRelated with CICD, Github Actions, etcRelated with CICD, Github Actions, etc