From 821774cf47c79c234e7c3cac37fe2d25506ef423 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 28 May 2017 21:29:35 -0400 Subject: [PATCH 01/10] Update requirements.txt --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 093f45ed..59803132 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,5 +10,6 @@ readme_renderer Sphinx<=1.5.5 PySocks setuptools>=18.5 +flake8 tox -detox \ No newline at end of file +detox From 0622b5c54ee6682e6afc21e05cc5f9f95a98aaba Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 28 May 2017 21:38:27 -0400 Subject: [PATCH 02/10] flake8 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f19a72e1..ea9f0774 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ ci: test-readme: python setup.py check -r -s +flake8: + flake8 --ignore=E501 + coverage: py.test --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=requests tests From beccd21146a0731c715f4fb7b3541bead8735623 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 28 May 2017 21:42:09 -0400 Subject: [PATCH 03/10] bunk change --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea9f0774..612f1a90 100644 --- a/Makefile +++ b/Makefile @@ -24,4 +24,4 @@ publish: docs: cd docs && make html - @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m" + @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m" \ No newline at end of file From 58501d1ec7fc931167a0c2ec95e5d734af7cd04d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 28 May 2017 21:43:29 -0400 Subject: [PATCH 04/10] docutils --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 59803132..8d79283f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,6 +10,7 @@ readme_renderer Sphinx<=1.5.5 PySocks setuptools>=18.5 +docutils flake8 tox detox From cd2beaf04a840e2280d29eb4087f62abde4a36bb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 28 May 2017 21:54:13 -0400 Subject: [PATCH 05/10] flake8report.txt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 612f1a90..1ce87d6d 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ test-readme: python setup.py check -r -s flake8: - flake8 --ignore=E501 + flake8 --ignore=E501 > flake8_report.txt coverage: py.test --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=requests tests From 8ddba4662d71b8ce9504fa4cf0e52ff0c1ebba0a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 28 May 2017 22:06:04 -0400 Subject: [PATCH 06/10] no piping to a file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ce87d6d..612f1a90 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ test-readme: python setup.py check -r -s flake8: - flake8 --ignore=E501 > flake8_report.txt + flake8 --ignore=E501 coverage: py.test --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=requests tests From 60226cc25c0bec7933d14f38b9f043ff9d8419b6 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 May 2017 01:32:26 -0400 Subject: [PATCH 07/10] empty commit From 88b435e7e84425e0372f3905f81caea6164f3ed4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 May 2017 01:36:00 -0400 Subject: [PATCH 08/10] only flake8 the right directory --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 612f1a90..93b57501 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ test-readme: python setup.py check -r -s flake8: - flake8 --ignore=E501 + flake8 --ignore=E501 requests coverage: py.test --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=requests tests From 31fc69ec0d439664b97dd7c0b936b4640c30d49d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 May 2017 01:39:42 -0400 Subject: [PATCH 09/10] empty commit From 5a2e5af3a428006aac1b2b3353a123aa5ddaab72 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 May 2017 01:51:06 -0400 Subject: [PATCH 10/10] try junit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93b57501..5eadf3b5 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ test: # This runs all of the tests, on both Python 2 and Python 3. detox ci: - python setup.py test + py.test -n 8 --boxed --junitxml=report.xml test-readme: python setup.py check -r -s