We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c817325 commit f971caaCopy full SHA for f971caa
3 files changed
dist/deploy.sh
@@ -21,7 +21,7 @@ pushd "${SCRIPT_DIR}/../"
21
22
# We redirect stderr to /dev/null since sometimes setuptools may print pyproject
23
# related warning
24
-VERSION=$(python setup.py --version 2> /dev/null)
+VERSION=$(grep -Po '(?<=^__version__ = ")[^"]+' libcloud/__init__.py)
25
popd
26
27
pushd "${SCRIPT_DIR}"
docs/testing.rst
@@ -77,7 +77,7 @@ To generate the test coverage run the following command:
77
78
.. sourcecode:: bash
79
80
- PYTHONPATH=. python setup.py coverage
+ tox -e coverage_html_report
81
82
When it completes you should see a new ``coverage_html_report`` directory which
83
contains the test coverage.
setup.py
0 commit comments