From 6935a28db506c003d58a70159eac9280855d6fc5 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:36:36 +0500 Subject: [PATCH 01/15] Update .travis.yml --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dbc49fc..f44500e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,13 @@ language: python + python: - "2.7" + install: - pip install -r requirements.txt + script: - - py.test + - py.test --pep8 coveralls -v --cov coveralls --cov-report term-missing + +after_success: + - coveralls From e9739b0b08ef72a1fc5055b1013cdef372bcea1d Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:37:44 +0500 Subject: [PATCH 02/15] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 4f7bdea..1e4b2b8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ requests mock +coveralls From c495bb1a67d51e721d4967dc4c38558d9a8395a3 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:40:46 +0500 Subject: [PATCH 03/15] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 1e4b2b8..a3d98a0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ requests mock +coverage coveralls From f3392707bd6c058160b35b82a2834e9231e61ff1 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:43:09 +0500 Subject: [PATCH 04/15] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a3d98a0..f50a880 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ requests mock -coverage +pytest-cov coveralls From 9d918c78b721e7296ef249f57c2c1e0c093b0895 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:45:46 +0500 Subject: [PATCH 05/15] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index f50a880..3692125 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ requests mock pytest-cov +pytest-pep8 coveralls From e109a58acc0e7b3402641c591dea6173f86c1bd7 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:50:20 +0500 Subject: [PATCH 06/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f44500e..fb48710 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --pep8 coveralls -v --cov coveralls --cov-report term-missing + - py.test --cov=vk tests/ after_success: - coveralls From 5008d2892d823c974f32986bd9f8ae355d4fa65b Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:56:32 +0500 Subject: [PATCH 07/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fb48710..4c02312 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --cov=vk tests/ + - py.test --pep8 --cov=vk tests/ after_success: - coveralls From ef5a055a340b7bfc4d844dc15abc0422c401d21e Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 15:59:36 +0500 Subject: [PATCH 08/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4c02312..36a9b77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --pep8 --cov=vk tests/ + - py.test --pep8 pep8maxlinelength=120 --cov=vk tests/ after_success: - coveralls From 7f6b32563484bea47628bb04eac9b3831cab7b74 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 19:56:58 +0500 Subject: [PATCH 09/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 36a9b77..4c02312 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --pep8 pep8maxlinelength=120 --cov=vk tests/ + - py.test --pep8 --cov=vk tests/ after_success: - coveralls From 5f13a753500dc24c1d36341f5f35d79e5f0ef5be Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 19:57:24 +0500 Subject: [PATCH 10/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4c02312..156e5e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --pep8 --cov=vk tests/ + - py.test --flake8 --cov=vk tests/ after_success: - coveralls From 987d55ef6697d58fe748e37c46d296c00620a15f Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 19:57:42 +0500 Subject: [PATCH 11/15] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3692125..980991c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ requests mock pytest-cov -pytest-pep8 +pytest-flake8 coveralls From c27edc25d9b3a979bd0e089551621d1120d11cc1 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 20:01:35 +0500 Subject: [PATCH 12/15] Create .flake8 --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..6deafc2 --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120 From ae7eee066de14746a330d9d5eb6d5ba01441df78 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 21:03:34 +0500 Subject: [PATCH 13/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 156e5e9..33afded 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --flake8 --cov=vk tests/ + - py.test --flake8 --cov=vk after_success: - coveralls From f27bafaccb3fdd1ca71328a0630ff994990aa2de Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 21:07:47 +0500 Subject: [PATCH 14/15] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 33afded..2b4a4ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - py.test --flake8 --cov=vk + - py.test --flake8 --cov after_success: - coveralls From 5381e80632db8ad209fe2285a341cf481f011e51 Mon Sep 17 00:00:00 2001 From: progpy Date: Sun, 1 Oct 2017 21:40:28 +0500 Subject: [PATCH 15/15] Update .travis.yml --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2b4a4ca..1988b50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,11 @@ install: - pip install -r requirements.txt script: - - py.test --flake8 --cov + - py.test + - py.test --flake8 + - py.test --cov=vk + - py.test --cov=user_photo --cov-append + - py.test --cov=ya_translate --cov-append after_success: - coveralls