diff options
-rw-r--r-- | docs/testing/developer/devguide/overview.rst | 11 | ||||
-rw-r--r-- | tests/integration/compute.yaml | 5 |
2 files changed, 13 insertions, 3 deletions
diff --git a/docs/testing/developer/devguide/overview.rst b/docs/testing/developer/devguide/overview.rst index 66712155..12f9d9f1 100644 --- a/docs/testing/developer/devguide/overview.rst +++ b/docs/testing/developer/devguide/overview.rst @@ -116,6 +116,17 @@ Docker image #. Fill in ``RELEASE_VERSION`` with version number not including release name, e.g. ``1.0`` #. Trigger a manual build +Python Package +-------------- + +QTIP is also available as a Python Package. It is hosted on the Python Package Index(PyPI). + +#. Install twine with ``pip install twine`` +#. Build the distributions ``python setup.py sdist bdist_wheel`` +#. Upload the distributions built with ``twine upload dist/*`` + +NOTE: only package **maintainers** are permitted to upload the package versions. + Release note ------------ diff --git a/tests/integration/compute.yaml b/tests/integration/compute.yaml index 1f5ec8dd..87553fd7 100644 --- a/tests/integration/compute.yaml +++ b/tests/integration/compute.yaml @@ -78,8 +78,7 @@ - hosts: local tasks: - name: create system information report - local_action: template src=templates/system-info.j2 dest=reports/system-info - delegate_to: localhost - # TODO(yujunz) push test result to testapi + template: src=templates/system-info.j2 dest=reports/system-info - name: create qpi report template: src=templates/qpi-report.j2 dest=reports/qpi-report + # TODO(yujunz) push test result to testapi |