Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d61f9d17
Kaydet (Commit)
d61f9d17
authored
Eki 31, 2011
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #13304: Skip test case if user site-packages disabled (-s or
PYTHONNOUSERSITE). (Patch by Carl Meyer)
üst
2738a646
316f573d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
test_site.py
Lib/test/test_site.py
+3
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_site.py
Dosyayı görüntüle @
d61f9d17
...
...
@@ -24,7 +24,7 @@ if "site" in sys.modules:
else
:
raise
unittest
.
SkipTest
(
"importation of site.py suppressed"
)
if
not
os
.
path
.
isdir
(
site
.
USER_SITE
):
if
site
.
ENABLE_USER_SITE
and
not
os
.
path
.
isdir
(
site
.
USER_SITE
):
# need to add user site directory for tests
os
.
makedirs
(
site
.
USER_SITE
)
site
.
addsitedir
(
site
.
USER_SITE
)
...
...
@@ -157,6 +157,8 @@ class HelperFunctionsTests(unittest.TestCase):
finally
:
pth_file
.
cleanup
()
@unittest.skipUnless
(
site
.
ENABLE_USER_SITE
,
"requires access to PEP 370 "
"user-site (site.ENABLE_USER_SITE)"
)
def
test_s_option
(
self
):
usersite
=
site
.
USER_SITE
self
.
assertIn
(
usersite
,
sys
.
path
)
...
...
Misc/NEWS
Dosyayı görüntüle @
d61f9d17
...
...
@@ -1523,6 +1523,9 @@ Extension Modules
Tests
-----
- Issue #13304: Skip test case if user site-packages disabled (-s or
PYTHONNOUSERSITE). (Patch by Carl Meyer)
- Issue #5661: Add a test for ECONNRESET/EPIPE handling to test_asyncore. Patch
by Xavier de Gaye.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment