Skip to content

Commit

Permalink
Merge pull request #689 from cehbrecht/fix-wfs-schema-test
Browse files Browse the repository at this point in the history
remove wfs test for version 1.0.0
  • Loading branch information
cehbrecht authored May 26, 2020
2 parents acceae7 + 43d4008 commit 9991d84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_wfs_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class TestOnline(object):
@pytest.mark.online
@pytest.mark.skipif(not service_ok(WFS_SERVICE_URL),
reason="WFS service is unreachable")
@pytest.mark.parametrize("wfs_version", ["1.0.0", "1.1.0", "2.0.0"])
@pytest.mark.parametrize("wfs_version", ["1.1.0", "2.0.0"])
def test_get_schema(self, wfs_version):
"""Test the get_schema method for a standard schema."""
wfs = WebFeatureService(WFS_SERVICE_URL, version=wfs_version)
Expand All @@ -96,7 +96,7 @@ def test_get_schema(self, wfs_version):
@pytest.mark.online
@pytest.mark.skipif(not service_ok(WFS_SERVICE_URL),
reason="WFS service is unreachable")
@pytest.mark.parametrize("wfs_version", ["1.0.0", "1.1.0", "2.0.0"])
@pytest.mark.parametrize("wfs_version", ["1.1.0", "2.0.0"])
def test_schema_result(self, wfs_version):
"""Test whether the output from get_schema is a wellformed dictionary."""
wfs = WebFeatureService(WFS_SERVICE_URL, version=wfs_version)
Expand Down

0 comments on commit 9991d84

Please sign in to comment.