diff options
author | WuKong <rebirthmonkey@gmail.com> | 2017-12-24 13:09:46 +0100 |
---|---|---|
committer | WuKong <rebirthmonkey@gmail.com> | 2017-12-24 13:09:46 +0100 |
commit | b2904eb52f85938a18f55520ce2b4cf4dcb0269f (patch) | |
tree | 055bcf58dc3d767fc61a870a4f859e0f740ac3db /templates/moon_pythonunittest | |
parent | 1b21e61269223d9a9b97112e75606b1f612a0a24 (diff) |
moon doc cleanup
Change-Id: Iccc0858e305d724fd8c3341e27f9fa90ffeb916f
Signed-off-by: WuKong <rebirthmonkey@gmail.com>
Diffstat (limited to 'templates/moon_pythonunittest')
-rw-r--r-- | templates/moon_pythonunittest/Dockerfile | 8 | ||||
-rw-r--r-- | templates/moon_pythonunittest/README.md | 8 | ||||
-rw-r--r-- | templates/moon_pythonunittest/requirements.txt | 10 | ||||
-rw-r--r-- | templates/moon_pythonunittest/run_tests.sh | 13 |
4 files changed, 39 insertions, 0 deletions
diff --git a/templates/moon_pythonunittest/Dockerfile b/templates/moon_pythonunittest/Dockerfile new file mode 100644 index 00000000..b8fb5151 --- /dev/null +++ b/templates/moon_pythonunittest/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3 + +RUN pip install pytest requests_mock requests --upgrade +ADD requirements.txt /root +RUN pip install -r /root/requirements.txt --upgrade + +ADD run_tests.sh /root +CMD ["sh", "/root/run_tests.sh"]
\ No newline at end of file diff --git a/templates/moon_pythonunittest/README.md b/templates/moon_pythonunittest/README.md new file mode 100644 index 00000000..45d3a988 --- /dev/null +++ b/templates/moon_pythonunittest/README.md @@ -0,0 +1,8 @@ +# Python Unit Test Docker + +## Build +- `docker image build -t wukongsun/moon_python_unit_test .` + +## Push to DockerHub +- `docker login --username=wukongsun` +- `docker image push wukongsun/moon_python_unit_test`
\ No newline at end of file diff --git a/templates/moon_pythonunittest/requirements.txt b/templates/moon_pythonunittest/requirements.txt new file mode 100644 index 00000000..b611b008 --- /dev/null +++ b/templates/moon_pythonunittest/requirements.txt @@ -0,0 +1,10 @@ +kombu !=4.0.1,!=4.0.0 +oslo.messaging +oslo.config +oslo.log +vine +werkzeug +flask +requests +pytest +requests_mock
\ No newline at end of file diff --git a/templates/moon_pythonunittest/run_tests.sh b/templates/moon_pythonunittest/run_tests.sh new file mode 100644 index 00000000..6c586f87 --- /dev/null +++ b/templates/moon_pythonunittest/run_tests.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +cd /data +pip3 install -r tests/unit_python/requirements.txt --upgrade +pip3 install . + +if [ -f /data/tests/unit_python/run_tests.sh ]; +then + bash /data/tests/unit_python/run_tests.sh; +fi + +cd /data/tests/unit_python +pytest . |