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
pytest --setup-show test_this.py
============================================================================ test session starts =============================================================================
platform linux -- Python 3.6.9, pytest-5.4.3, py-1.9.0, pluggy-0.13.1
rootdir: /tmp/tmp.avOUzRDAMS
collected 2 items
test_this.py
SETUP F one
SETUP F two[1]
test_this.py::test_me[1] (fixtures used: one, two).
TEARDOWN F two[1]
TEARDOWN F one
SETUP F one
SETUP F two[2]
test_this.py::test_me[2] (fixtures used: one, two).
TEARDOWN F two[2]
TEARDOWN F one
============================================================================= 2 passed in 0.01s ==============================================================================
but
pytest --setup-show test_this.py
============================================================================ test session starts =============================================================================
platform linux -- Python 3.6.9, pytest-5.4.3, py-1.9.0, pluggy-0.13.1
rootdir: /tmp/tmp.avOUzRDAMS
plugins: cases-2.0.2
collected 2 items
test_this.py
SETUP F two[1]
test_this.py::test_me[1] (fixtures used: two).
TEARDOWN F two[1]
SETUP F two[2]
test_this.py::test_me[2] (fixtures used: two).
TEARDOWN F two[2]
============================================================================= 2 passed in 0.01s ==============================================================================
Compare loaded plugins and used fixtures (python version doesn't matter)
The text was updated successfully, but these errors were encountered:
When
then
but
Compare loaded plugins and used fixtures (python version doesn't matter)
The text was updated successfully, but these errors were encountered: