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
edcac8f4
Kaydet (Commit)
edcac8f4
authored
Agu 03, 2004
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make sure distutils logging is shut off in tests to avoid spurious output
üst
1fa649f2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
3 deletions
+25
-3
log.py
Lib/distutils/log.py
+3
-0
support.py
Lib/distutils/tests/support.py
+13
-0
test_build_py.py
Lib/distutils/tests/test_build_py.py
+3
-1
test_build_scripts.py
Lib/distutils/tests/test_build_scripts.py
+3
-1
test_install_scripts.py
Lib/distutils/tests/test_install_scripts.py
+3
-1
No files found.
Lib/distutils/log.py
Dosyayı görüntüle @
edcac8f4
...
...
@@ -50,7 +50,10 @@ error = _global_log.error
fatal
=
_global_log
.
fatal
def
set_threshold
(
level
):
# return the old threshold for use from tests
old
=
_global_log
.
threshold
_global_log
.
threshold
=
level
return
old
def
set_verbosity
(
v
):
if
v
<=
0
:
...
...
Lib/distutils/tests/support.py
Dosyayı görüntüle @
edcac8f4
...
...
@@ -3,6 +3,19 @@
import
shutil
import
tempfile
from
distutils
import
log
class
LoggingSilencer
(
object
):
def
setUp
(
self
):
super
(
LoggingSilencer
,
self
)
.
setUp
()
self
.
threshold
=
log
.
set_threshold
(
log
.
FATAL
)
def
tearDown
(
self
):
log
.
set_threshold
(
self
.
threshold
)
super
(
LoggingSilencer
,
self
)
.
tearDown
()
class
TempdirManager
(
object
):
"""Mix-in class that handles temporary directories for test cases.
...
...
Lib/distutils/tests/test_build_py.py
Dosyayı görüntüle @
edcac8f4
...
...
@@ -9,7 +9,9 @@ from distutils.core import Distribution
from
distutils.tests
import
support
class
BuildPyTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
class
BuildPyTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
def
test_package_data
(
self
):
sources
=
self
.
mkdtemp
()
...
...
Lib/distutils/tests/test_build_scripts.py
Dosyayı görüntüle @
edcac8f4
...
...
@@ -9,7 +9,9 @@ from distutils.core import Distribution
from
distutils.tests
import
support
class
BuildScriptsTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
class
BuildScriptsTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
def
test_default_settings
(
self
):
cmd
=
self
.
get_build_scripts_cmd
(
"/foo/bar"
,
[])
...
...
Lib/distutils/tests/test_install_scripts.py
Dosyayı görüntüle @
edcac8f4
...
...
@@ -9,7 +9,9 @@ from distutils.core import Distribution
from
distutils.tests
import
support
class
InstallScriptsTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
class
InstallScriptsTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
unittest
.
TestCase
):
def
test_default_settings
(
self
):
dist
=
Distribution
()
...
...
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