Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Dec 23, 2024
1 parent 6b4c841 commit 300802e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/aiidalab_qe/common/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import base64
import hashlib
import os
import typing as t
from copy import deepcopy
from queue import Queue
Expand Down Expand Up @@ -1150,6 +1151,9 @@ def __init__(self, model: QWSM, **kwargs):
)

def render(self):
if "PYTEST_CURRENT_TEST" in os.environ:
super().render()
return
if self.previous_step_state is WizardAppWidgetStep.State.SUCCESS:
self._hide_missing_information_warning()
if not self.rendered:
Expand Down

0 comments on commit 300802e

Please sign in to comment.