Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
Expand Down
14 changes: 9 additions & 5 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,12 @@ Test coverage

Zarr maintains 100% test coverage under the latest Python stable release (currently
Python 3.8). Both unit tests and docstring doctests are included when computing
coverage. Running ``tox -e py38`` will automatically run the test suite with coverage
and produce a coverage report. This should be 100% before code can be accepted into the
main code base.
coverage. Running::

$ python -m pytest -v --cov=zarr --cov-config=.coveragerc zarr

will automatically run the test suite with coverage and produce a coverage report.
This should be 100% before code can be accepted into the main code base.

When submitting a pull request, coverage will also be collected across all supported
Python versions via the Codecov service, and will be reported back within the pull
Expand Down Expand Up @@ -243,9 +246,10 @@ notes (``docs/release.rst``).

The documentation can be built locally by running::

$ tox -e docs
$ cd docs
$ make clean; make html

The resulting built documentation will be available in the ``.tox/docs/tmp/html`` folder.
The resulting built documentation will be available in the ``docs/_build/html`` folder.

Development best practices, policies and procedures
---------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion release.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
tox
# version=x.x.x
echo $version
git tag -a v$version -m v$version
Expand Down
1 change: 0 additions & 1 deletion requirements_dev_optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ types-redis
types-setuptools
pymongo==4.3.2
# optional test requirements
tox==3.26.0
coverage
flake8==5.0.4
pytest-cov==4.0.0
Expand Down
51 changes: 0 additions & 51 deletions tox.ini

This file was deleted.