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
3c02fc4c
Kaydet (Commit)
3c02fc4c
authored
Nis 27, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1004 from klj613/allow-equals-character-in-env-file
makes it possible to have '=' in the env file
üst
237f5318
6eaf8ce7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
utils.py
docker/utils/utils.py
+1
-1
utils_test.py
tests/unit/utils_test.py
+8
-0
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
3c02fc4c
...
...
@@ -845,7 +845,7 @@ def parse_env_file(env_file):
if
line
[
0
]
==
'#'
:
continue
parse_line
=
line
.
strip
()
.
split
(
'='
)
parse_line
=
line
.
strip
()
.
split
(
'='
,
1
)
if
len
(
parse_line
)
==
2
:
k
,
v
=
parse_line
environment
[
k
]
=
v
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
3c02fc4c
...
...
@@ -371,6 +371,14 @@ class ParseEnvFileTest(base.BaseTestCase):
{
'USER'
:
'jdoe'
,
'PASS'
:
'secret'
})
os
.
unlink
(
env_file
)
def
test_parse_env_file_with_equals_character
(
self
):
env_file
=
self
.
generate_tempfile
(
file_content
=
'USER=jdoe
\n
PASS=sec==ret'
)
get_parse_env_file
=
parse_env_file
(
env_file
)
self
.
assertEqual
(
get_parse_env_file
,
{
'USER'
:
'jdoe'
,
'PASS'
:
'sec==ret'
})
os
.
unlink
(
env_file
)
def
test_parse_env_file_commented_line
(
self
):
env_file
=
self
.
generate_tempfile
(
file_content
=
'USER=jdoe
\n
#PASS=secret'
)
...
...
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