diff --git a/tests/test_animation.py b/tests/test_animation.py index ac82934f5..e76071b62 100644 --- a/tests/test_animation.py +++ b/tests/test_animation.py @@ -143,6 +143,7 @@ class TestAnimation(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_resend(self, bot, chat_id, animation): message = bot.send_animation(chat_id, animation.file_id) diff --git a/tests/test_audio.py b/tests/test_audio.py index a189dff5f..fdb0a533b 100644 --- a/tests/test_audio.py +++ b/tests/test_audio.py @@ -120,6 +120,7 @@ class TestAudio(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_resend(self, bot, chat_id, audio): message = bot.send_audio(chat_id=chat_id, audio=audio.file_id) diff --git a/tests/test_document.py b/tests/test_document.py index c74c58fa7..e9d9d837a 100644 --- a/tests/test_document.py +++ b/tests/test_document.py @@ -109,6 +109,7 @@ class TestDocument(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_send_resend(self, bot, chat_id, document): message = bot.send_document(chat_id=chat_id, document=document.file_id) diff --git a/tests/test_photo.py b/tests/test_photo.py index a7d6bbede..4f0dc3a2a 100644 --- a/tests/test_photo.py +++ b/tests/test_photo.py @@ -175,6 +175,7 @@ class TestPhoto(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_get_and_download(self, bot, photo): new_file = bot.getFile(photo.file_id) diff --git a/tests/test_sticker.py b/tests/test_sticker.py index 3dab2605c..99df11dad 100644 --- a/tests/test_sticker.py +++ b/tests/test_sticker.py @@ -108,6 +108,7 @@ class TestSticker(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_resend(self, bot, chat_id, sticker): message = bot.send_sticker(chat_id=chat_id, sticker=sticker.file_id) diff --git a/tests/test_video.py b/tests/test_video.py index e5922715b..213205777 100644 --- a/tests/test_video.py +++ b/tests/test_video.py @@ -129,6 +129,7 @@ class TestVideo(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_resend(self, bot, chat_id, video): message = bot.send_video(chat_id, video.file_id) diff --git a/tests/test_videonote.py b/tests/test_videonote.py index ebc1b24bd..ffbbffb31 100644 --- a/tests/test_videonote.py +++ b/tests/test_videonote.py @@ -96,6 +96,7 @@ class TestVideoNote(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_resend(self, bot, chat_id, video_note): message = bot.send_video_note(chat_id, video_note.file_id) diff --git a/tests/test_voice.py b/tests/test_voice.py index d52fea6b0..edf3a88ab 100644 --- a/tests/test_voice.py +++ b/tests/test_voice.py @@ -99,6 +99,7 @@ class TestVoice(object): @flaky(3, 1) @pytest.mark.timeout(10) + @pytest.mark.skip(reason='Doesnt work without API 4.5') def test_resend(self, bot, chat_id, voice): message = bot.sendVoice(chat_id, voice.file_id)