diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-12-16 02:31:34 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-12-16 02:31:34 +0100 |
commit | 8b4f7b09e66bdab12d66526f30b6bf7256004b22 (patch) | |
tree | 5795f7faaef034a5e9be4016f6a1045628bf896c | |
parent | 95a9760839ce73e2cfff57aecd31b2b723a7e5c4 (diff) | |
download | fuzzycat-8b4f7b09e66bdab12d66526f30b6bf7256004b22.tar.gz fuzzycat-8b4f7b09e66bdab12d66526f30b6bf7256004b22.zip |
add skip reason
-rw-r--r-- | tests/test_matching.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_matching.py b/tests/test_matching.py index cded2c8..3d96e5c 100644 --- a/tests/test_matching.py +++ b/tests/test_matching.py @@ -13,7 +13,7 @@ def es_client(): return elasticsearch.Elasticsearch(["https://search.fatcat.wiki:443"]) -@pytest.mark.skip +@pytest.mark.skip(reason="we cannot use POST on es, which client uses: https://git.io/JLsYb") def test_match_release_fuzzy(es_client): cases = (("wtv64ahbdzgwnan7rllwr3nurm", 2), ) for case, count in cases: |