-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pytest ignores test file if a single test method is called from the same test file #13240
Comments
@bluetech could this be related to the directory handling |
An other strange behavior: test_test_1py
pytest -s -rsxX test_test.py::TestClass::test_test_1 test_test.py::TestClass::test_test_2 test_test.py::TestClass::test_test_3 test_test.py::TestClass::test_test_2 test_test_1.py test_test.py Test1 ============================== 4 passed in 0.13s =============================== We missing the 2nd Test2. |
We expect that the methods and files given as commandline arguments are executed as provided in comandline. |
It is indeed, I was able to bisect the problem mentioned in the OP to:
|
Yes, this is a duplicate of the cursed issue #12083. |
We want to execute all tests from a test file and need to execute one test from this file afterwards.
In version 7.3.1 this worked well.
Since 8.3.4 we imagine following:
Reproduction:
content of test_test.py
pytest -s test_test.py test_test.py::TestClass::test_test_3
Result:
============================= test session starts ==============================
platform linux -- Python 3.9.18, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp
plugins: dependency-0.6.0, csv-3.0.0
collected 1 item
test_test.py Test3
.
============================== 1 passed in 0.02s ===============================
What we expect is like in version 7.3.1:
pytest -s test_test.py test_test.py::TestClass::test_test_3
============================= test session starts ==============================
platform linux -- Python 3.9.18, pytest-7.3.1, pluggy-1.0.0
rootdir: /mnt/hgfs/shared
plugins: dependency-0.5.1, csv-3.0.0
collected 4 items
test_test.py Test1
.Test2
.Test3
.Test3
.
============================== 4 passed in 0.05s ===============================
The text was updated successfully, but these errors were encountered: