Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
Darwcss
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
Darwcss
Commits
5c6934d5
Kaydet (Commit)
5c6934d5
authored
Ara 29, 2018
tarafından
Batuhan Osman TASKAYA
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
base jenkins file demo
üst
0c9957fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
Jenkinsfile
Jenkinsfile
+43
-0
test_misc.py
tests/test_misc.py
+3
-0
No files found.
Jenkinsfile
0 → 100644
Dosyayı görüntüle @
5c6934d5
pipeline
{
agent
{
docker
{
image
'python:3.7.1'
}
}
stages
{
stage
(
'prepare'
)
{
steps
{
sh
'python -m venv .venv'
sh
""". .venv/bin/activate
pip install pytest twine
pip install -e ."""
}
}
stage
(
'test'
)
{
steps
{
sh
""". .venv/bin/activate
pytest --junit-xml=test_results.xml tests/
"""
}
}
stage
(
'build'
)
{
steps
{
sh
""". .venv/bin/activate
python setup.py sdist
"""
}
}
stage
(
'deploy_pypi'
)
{
environment
{
TWINE_REPOSITORY
=
'https://pypi.kernel.live'
PYPI
=
credentials
(
'local-pypi'
)
}
steps
{
sh
""". .venv/bin/activate
twine upload -u $PYPI_USR -p $PYPI_PSW dist/*
"""
}
}
}
post
{
always
{
junit
'test_results.xml'
}
}
}
tests/test_misc.py
Dosyayı görüntüle @
5c6934d5
...
...
@@ -12,5 +12,8 @@ class TestMisc(unittest.TestCase):
self
.
assertEqual
(
border_style
.
value
,
"5px solid rgb(255, 0, 0)"
)
def
test_numeric_plus_color
(
self
):
self
.
assertEqual
(
NumericValue
(
15
,
"
%
"
)
+
ColorValue
(
"ff"
,
"ff"
,
"ff"
,
"hex"
),
"15
% #
ffffff"
)
if
__name__
==
"__main__"
:
unittest
.
main
()
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