You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As is reported on: pytest-dev/pytest#634 metafunc.parametrize overwrite scopes.
This produce a recreation of the entire session on tests that use parametrize.
This can be easily fixed using request.config.option.sql_url inside _sqlalchemy instead passing it as a fixture.
As is reported on: pytest-dev/pytest#634
metafunc.parametrize
overwrite scopes.This produce a recreation of the entire session on tests that use parametrize.
This can be easily fixed using
request.config.option.sql_url
inside_sqlalchemy
instead passing it as a fixture.I'm working on a PR to fix this ASAP
This is my test case
test_pytest.py
:and this is the result of running
py.test test_pytest.py --sql-echo -s
The text was updated successfully, but these errors were encountered: