From f20a8e6244cb0d93bbbc0e2b5e6af58a76a3191c Mon Sep 17 00:00:00 2001 From: "Timothy A. Smith" Date: Sat, 29 Jun 2019 11:01:32 -0500 Subject: [PATCH] register pytest.mark.slow so pytest stops whining --- pytest.ini | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..30a7e19 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +markers = + slow: marks tests as slow (deselect with '--runslow') -- GitLab