From 2257f3eb63d54157f31ae2bc48ac55774e768d09 Mon Sep 17 00:00:00 2001 From: "Gregory R. Lee" Date: Wed, 15 May 2019 16:25:59 -0400 Subject: [PATCH 1/2] add pytest.ini to MANIFEST.in --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 0bfae58e3..7331f6d30 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -15,7 +15,7 @@ recursive-include demo * include cythonize.dat # Add build and testing tools -include tox.ini +include tox.ini pytest.ini recursive-include util * # Exclude what we don't want to include From cd5b94d8c516b9f9f389a89d22eef7140d11dcbb Mon Sep 17 00:00:00 2001 From: "Gregory R. Lee" Date: Wed, 15 May 2019 16:27:42 -0400 Subject: [PATCH 2/2] register pytest.mark.slow --- pywt/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pywt/conftest.py diff --git a/pywt/conftest.py b/pywt/conftest.py new file mode 100644 index 000000000..da8ae6455 --- /dev/null +++ b/pywt/conftest.py @@ -0,0 +1,6 @@ +import pytest + + +def pytest_configure(config): + config.addinivalue_line("markers", + "slow: Tests that are slow.")