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
c2ecac47
Kaydet (Commit)
c2ecac47
authored
Nis 12, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#17692: test_sqlite now works with unittest test discovery. Patch by Zachary Ware.
üst
1eafd107
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
test_sqlite.py
Lib/test/test_sqlite.py
+5
-4
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_sqlite.py
Dosyayı görüntüle @
c2ecac47
...
...
@@ -3,21 +3,22 @@ import test.support
# Skip test if _sqlite3 module not installed
test
.
support
.
import_module
(
'_sqlite3'
)
import
unittest
import
sqlite3
from
sqlite3.test
import
(
dbapi
,
types
,
userfunctions
,
factory
,
transactions
,
hooks
,
regression
,
dump
)
def
test_main
(
):
def
load_tests
(
*
args
):
if
test
.
support
.
verbose
:
print
(
"test_sqlite: testing with version"
,
"{!r}, sqlite_version {!r}"
.
format
(
sqlite3
.
version
,
sqlite3
.
sqlite_version
))
test
.
support
.
run_unittest
(
dbapi
.
suite
(),
types
.
suite
(),
return
unittest
.
TestSuite
([
dbapi
.
suite
(),
types
.
suite
(),
userfunctions
.
suite
(),
factory
.
suite
(),
transactions
.
suite
(),
hooks
.
suite
(),
regression
.
suite
(),
dump
.
suite
())
dump
.
suite
()
]
)
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
c2ecac47
...
...
@@ -79,6 +79,9 @@ Tests
-
Issue
#
17690
:
test_time
now
works
with
unittest
test
discovery
.
Patch
by
Zachary
Ware
.
-
Issue
#
17692
:
test_sqlite
now
works
with
unittest
test
discovery
.
Patch
by
Zachary
Ware
.
Documentation
-------------
...
...
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