summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-11-18 01:46:26 (GMT)
committerBrett Cannon <brett@python.org>2012-11-18 01:46:26 (GMT)
commitd18772650465b5a04e1fd1439c13ffc152666703 (patch)
tree407db06b4189b0db2bedafe8879e91ba428edb6e /Misc
parent8f1fefab9a0816dd9fb089a7a0398e195a8e4b97 (diff)
downloadcpython-d18772650465b5a04e1fd1439c13ffc152666703.zip
cpython-d18772650465b5a04e1fd1439c13ffc152666703.tar.gz
cpython-d18772650465b5a04e1fd1439c13ffc152666703.tar.bz2
Issue #10966: Remove the concept of unexpected skipped tests.
The concept of what was unexpected was typically defined as "some depencendy wasn't installed", which isn't unexpected at all as it's totally optional. Since it confuses new contributors as they think something is wrong with their installation it seems sensible to get rid of the concept. This change also adds the concept of optional tests that are required to work on a specific platform(s) (e.g. test_winreg on Windows). This should help catch compile issues instead of a test being blindly skipped even when it should have run. The skipped test list in the future can also print out the reason for being skipped to make it more obvious as to why the skipping occurred.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 178cf2b..778a817 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -423,6 +423,8 @@ Documentation
Tools/Demos
-----------
+- Issue #10966: Remove the concept of unexpected skipped tests.
+
- Issue #9893: Removed the Misc/Vim directory.
- Removed the Misc/TextMate directory.