From f70c58685afec4961a54ada61b5011c446c529c8 Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 11 Nov 2020 18:34:39 +0100 Subject: [PATCH] default pytest opts belong into pyproject.toml --- Makefile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c8b5a0d..494ad53 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ install-test: compile # TODO: maybe use setup.py test? # --forked, because every test needs a separate process, see PYADPT-100 test: - pytest --forked + pytest # Development diff --git a/pyproject.toml b/pyproject.toml index d8a081d..d624b05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [tool.pytest.ini_options] minversion = "6.0" -addopts = "" +addopts = "-sv --forked" testpaths = [ "tests", ]