From 629c7be39523f34ca82524d30518b47585e092e3 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 21 Feb 2018 03:03:33 +0100 Subject: [PATCH 1/4] Update pytest from 3.3.2 to 3.4.1 --- dev-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 56465019..40c9bc9d 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,7 +1,7 @@ -rrequirements.txt sphinx==1.6.6 -pytest==3.3.2 +pytest==3.4.1 pep8==1.7.1 pytest-catchlog==1.2.2 pytest-timeout==1.2.1 From f1d8ee30cdb852c541d98dc5a0a2c5cc8dee87f6 Mon Sep 17 00:00:00 2001 From: ziajka Date: Wed, 21 Feb 2018 10:26:30 +0100 Subject: [PATCH 2/4] pytest-catchlog merged into the core --- dev-requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 40c9bc9d..173d3890 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -3,5 +3,4 @@ sphinx==1.6.6 pytest==3.4.1 pep8==1.7.1 -pytest-catchlog==1.2.2 pytest-timeout==1.2.1 From 1b3065750d842cd160d316bd2218c7ca925adccc Mon Sep 17 00:00:00 2001 From: ziajka Date: Wed, 21 Feb 2018 10:27:01 +0100 Subject: [PATCH 3/4] .pytest_cache into .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e4ff9349..6025462b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.py[cod] __pycache__ +.pytest_cache #py.test .cache From 56b901a8316fe96737f01cc66d587840fd712d7d Mon Sep 17 00:00:00 2001 From: ziajka Date: Wed, 21 Feb 2018 11:05:50 +0100 Subject: [PATCH 4/4] pytest.ini for ignoring files and recording DEBUG level in tests --- 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 00000000..c1ea2797 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +log_level=NOTSET +ignore=env \ No newline at end of file