@@ -10,12 +10,6 @@ This is a meta-package that pulls in the dependencies that are used by
1010`astropy `_ and some `affiliated packages `_ for testing. It can also be used for
1111testing packages that are not affiliated with the Astropy project.
1212
13- This package also provides pytest markers for cpu and memory intensive tests
14- (``pytest.mark.slow `` and ``pytest.mark.hugemem ``). Tests marked with those
15- markers are not run by default, can be run with the other tests with
16- ``--run-slow `` and ``--run-hugemem ``, and can be run separately with ``-m slow ``
17- and ``-m hugemem ``.
18-
1913The package also provides the short option ``-R `` for ``--remote-data ``.
2014
2115.. _astropy : https://docs.astropy.org/en/latest/
@@ -39,6 +33,8 @@ The following dependencies are installed by this package:
3933* `pytest-mock `_, a thin-wrapper around the mock package for easier use
4034 with ``pytest ``.
4135* `pytest-cov `_, a ``pytest `` plugin to measure test coverage.
36+ * `pytest-skip-slow `_, a ``pytest `` plugin to mark tests as slow or memory intensive,
37+ and skip them by default.
4238* `hypothesis `_, a Python library for property based testing.
4339
4440.. _pytest : https://doc.pytest.org
@@ -49,6 +45,7 @@ The following dependencies are installed by this package:
4945.. _pytest-filter-subpackage : https://github.com/astropy/pytest-filter-subpackage
5046.. _pytest-mock : https://github.com/pytest-dev/pytest-mock
5147.. _pytest-cov : https://github.com/pytest-dev/pytest-cov
48+ .. _pytest-skip-slow : https://github.com/okken/pytest-skip-slow
5249.. _hypothesis : https://hypothesis.readthedocs.io
5350
5451Installation
0 commit comments