Skip to content
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

fix expected pytest output for pytest integration after pinning to 3.0.7 #7240

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tests/python/pants_test/rules/test_test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_passing_python_test(self):
plugins: SOME_TEXT
collected 1 items
testprojects/tests/python/pants/dummies/test_pass.py . [100%]
testprojects/tests/python/pants/dummies/test_pass.py .
=========================== 1 passed in SOME_TEXT ===========================
Expand All @@ -94,7 +94,7 @@ def test_failing_python_test(self):
plugins: SOME_TEXT
collected 1 items
testprojects/tests/python/pants/dummies/test_fail.py F [100%]
testprojects/tests/python/pants/dummies/test_fail.py F
=================================== FAILURES ===================================
__________________________________ test_fail ___________________________________
Expand Down Expand Up @@ -122,7 +122,7 @@ def test_source_dep(self):
plugins: SOME_TEXT
collected 1 items
testprojects/tests/python/pants/dummies/test_with_source_dep.py . [100%]
testprojects/tests/python/pants/dummies/test_with_source_dep.py .
=========================== 1 passed in SOME_TEXT ===========================
Expand All @@ -141,7 +141,7 @@ def test_thirdparty_dep(self):
plugins: SOME_TEXT
collected 1 items
testprojects/tests/python/pants/dummies/test_with_thirdparty_dep.py . [100%]
testprojects/tests/python/pants/dummies/test_with_thirdparty_dep.py .
=========================== 1 passed in SOME_TEXT ===========================
Expand All @@ -162,7 +162,7 @@ def test_mixed_python_tests(self):
plugins: SOME_TEXT
collected 1 items
testprojects/tests/python/pants/dummies/test_fail.py F [100%]
testprojects/tests/python/pants/dummies/test_fail.py F
=================================== FAILURES ===================================
__________________________________ test_fail ___________________________________
Expand All @@ -179,7 +179,7 @@ def test_fail():
plugins: SOME_TEXT
collected 1 items
testprojects/tests/python/pants/dummies/test_pass.py . [100%]
testprojects/tests/python/pants/dummies/test_pass.py .
=========================== 1 passed in SOME_TEXT ===========================
Expand Down