i have a codebase to test and I use pytest and streamlit AppTest class for testing my codebase.
The concern is in the project root dir i have a file named conftest.py and in this file i am setup and tear down test resources however i am getting issue i.e *WARNING streamlit.runtime.state.session_state_proxy: Session state does not function when running a script without streamlit run*
i have tried
'''
conftest
========
SetUp and TearDown resource
'''
import pytest
from app.ui.Elements.test import setup_testing_resource, cleanup_testing_resource
@pytest.fixture(scope="session", autouse=True)
def setup_and_teardown():
# Setup code before running tests
setup_testing_resource()
# Control to the test functions
yield
# Teardown code after all tests are completed
cleanup_testing_resource()
i am getting issue on the statement “snowflake_session = connection.Connection.get()”
Ensure that the setup and teardown processes do not depend on Streamlit’s session state (or other functionalities). If the connection setup (e.g., snowflake_session = connection.Connection.get() ) relies on Streamlit’s session state, consider refactoring to remove this dependency for testing purposes.
For testing parts of your codebase that do require Streamlit’s session state, consider using mock objects to simulate Streamlit’s behavior. Python’s unittest.mock module can be very helpful here:
from unittest.mock import patch
@pytest.fixture(scope="session", autouse=True)
def setup_and_teardown():
with patch('streamlit.session_state', new_callable=MockSessionState):
setup_testing_resource()
yield
cleanup_testing_resource()
Hope this helps!
Kind Regards,
Sahir Maharaj
Data Scientist | AI Engineer
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.