diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-05 13:28:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-05 13:28:40 (GMT) |
commit | f7b5d419bf871d9cc898982c7b6b4c043f7d5e9d (patch) | |
tree | 9ae7a61c6f1a918db6e7252f32c88be7b08e6273 /Misc | |
parent | 85cf1d514b84dc9a4bcb40e20a12e1d82ff19f20 (diff) | |
download | cpython-f7b5d419bf871d9cc898982c7b6b4c043f7d5e9d.zip cpython-f7b5d419bf871d9cc898982c7b6b4c043f7d5e9d.tar.gz cpython-f7b5d419bf871d9cc898982c7b6b4c043f7d5e9d.tar.bz2 |
bpo-39855: Fix test_subprocess if nobody user doesn't exist (GH-18781)
test_subprocess.test_user() now skips the test on an user name if the
user name doesn't exist. For example, skip the test if the user
"nobody" doesn't exist on Linux.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2020-03-04-23-03-01.bpo-39855.Ql5xv8.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-03-04-23-03-01.bpo-39855.Ql5xv8.rst b/Misc/NEWS.d/next/Tests/2020-03-04-23-03-01.bpo-39855.Ql5xv8.rst new file mode 100644 index 0000000..0601241 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2020-03-04-23-03-01.bpo-39855.Ql5xv8.rst @@ -0,0 +1,3 @@ +test_subprocess.test_user() now skips the test on an user name if the user +name doesn't exist. For example, skip the test if the user "nobody" doesn't +exist on Linux. |