From f830213c4c24cd4ee02ed5eb593fdc8eeb1c159a Mon Sep 17 00:00:00 2001 From: ines Date: Mon, 20 Mar 2017 13:20:21 +0100 Subject: [PATCH] Remove compatibility check test Will only cause problems when incrementing version and not updating table. Also depends on external URL, which is bad. --- spacy/tests/test_download.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/spacy/tests/test_download.py b/spacy/tests/test_download.py index 58b39ea83..4bbe190df 100644 --- a/spacy/tests/test_download.py +++ b/spacy/tests/test_download.py @@ -5,11 +5,6 @@ from ..cli.download import download, get_compatibility, get_version, check_error import pytest -def test_download_fetch_compatibility(): - compatibility = get_compatibility() - assert type(compatibility) == dict - - @pytest.mark.parametrize('model', ['en_core_web_md']) def test_download_get_matching_version_succeeds(model): comp = { model: ['1.7.0', '0.100.0'] }