Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
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
docker-py
Commits
d39da116
Kaydet (Commit)
d39da116
authored
Şub 17, 2015
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #494 from tianon/fix-host-assumptions
Fix several DOCKER_HOST assumptions in integration_test.py
üst
5dace111
7f49cf12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
integration_test.py
tests/integration_test.py
+2
-2
No files found.
tests/integration_test.py
Dosyayı görüntüle @
d39da116
...
...
@@ -1429,7 +1429,7 @@ class UnixconnTestCase(unittest.TestCase):
with
warnings
.
catch_warnings
(
record
=
True
)
as
w
:
warnings
.
simplefilter
(
'always'
)
client
=
docker
.
Client
()
client
=
docker
.
Client
(
base_url
=
DEFAULT_BASE_URL
)
client
.
images
()
client
.
close
()
del
client
...
...
@@ -1444,7 +1444,7 @@ class UnixconnTestCase(unittest.TestCase):
class
TestRegressions
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
client
=
docker
.
client
.
Client
(
timeout
=
5
)
self
.
client
=
docker
.
Client
(
timeout
=
5
,
base_url
=
DEFAULT_BASE_URL
)
def
test_443
(
self
):
dfile
=
io
.
BytesIO
()
...
...
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