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
36500344
Kaydet (Commit)
36500344
authored
Kas 14, 2011
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove redundant setUp/tearDown methods in packaging tests
üst
acc0952f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
23 deletions
+2
-23
test_manifest.py
Lib/packaging/tests/test_manifest.py
+0
-8
test_uninstall.py
Lib/packaging/tests/test_uninstall.py
+2
-7
test_util.py
Lib/packaging/tests/test_util.py
+0
-8
No files found.
Lib/packaging/tests/test_manifest.py
Dosyayı görüntüle @
36500344
...
...
@@ -27,14 +27,6 @@ class ManifestTestCase(support.TempdirManager,
support
.
LoggingCatcher
,
unittest
.
TestCase
):
def
setUp
(
self
):
super
(
ManifestTestCase
,
self
)
.
setUp
()
self
.
cwd
=
os
.
getcwd
()
def
tearDown
(
self
):
os
.
chdir
(
self
.
cwd
)
super
(
ManifestTestCase
,
self
)
.
tearDown
()
def
assertNoWarnings
(
self
):
self
.
assertEqual
(
self
.
get_logs
(),
[])
...
...
Lib/packaging/tests/test_uninstall.py
Dosyayı görüntüle @
36500344
...
...
@@ -31,14 +31,9 @@ class UninstallTestCase(support.TempdirManager,
def
setUp
(
self
):
super
(
UninstallTestCase
,
self
)
.
setUp
()
self
.
addCleanup
(
enable_cache
)
self
.
root_dir
=
self
.
mkdtemp
()
self
.
cwd
=
os
.
getcwd
()
self
.
addCleanup
(
packaging
.
util
.
_path_created
.
clear
)
disable_cache
()
def
tearDown
(
self
):
packaging
.
util
.
_path_created
.
clear
()
super
(
UninstallTestCase
,
self
)
.
tearDown
()
def
get_path
(
self
,
dist
,
name
):
# the dist argument must contain an install_dist command correctly
# initialized with a prefix option and finalized befored this method
...
...
@@ -79,7 +74,7 @@ class UninstallTestCase(support.TempdirManager,
dist
.
parse_config_files
()
dist
.
finalize_options
()
dist
.
run_command
(
'install_dist'
,
{
'prefix'
:
(
'command line'
,
self
.
root_dir
)})
{
'prefix'
:
(
'command line'
,
self
.
mkdtemp
()
)})
site_packages
=
self
.
get_path
(
dist
,
'purelib'
)
return
dist
,
site_packages
...
...
Lib/packaging/tests/test_util.py
Dosyayı görüntüle @
36500344
...
...
@@ -602,14 +602,6 @@ class GlobTestCaseBase(support.TempdirManager,
class
GlobTestCase
(
GlobTestCaseBase
):
def
setUp
(
self
):
super
(
GlobTestCase
,
self
)
.
setUp
()
self
.
cwd
=
os
.
getcwd
()
def
tearDown
(
self
):
os
.
chdir
(
self
.
cwd
)
super
(
GlobTestCase
,
self
)
.
tearDown
()
def
assertGlobMatch
(
self
,
glob
,
spec
):
tempdir
=
self
.
build_files_tree
(
spec
)
expected
=
self
.
clean_tree
(
spec
)
...
...
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