Unverified Commit 6b16e6bf authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

Merge pull request #314546 from imincik/owslib-disable-online-tests-with-marker

python3Packages.owslib: disable all online tests using marker
parents 2eee7f23 c72e77b4
Loading
Loading
Loading
Loading
+4 −16
Original line number Diff line number Diff line
@@ -51,21 +51,9 @@ buildPythonPackage rec {
    export PY_IGNORE_IMPORTMISMATCH=1
  '';

  disabledTests =
    [
      # Tests require network access
      "test_ows_interfaces_wcs"
      "test_wfs_110_remotemd"
      "test_wfs_200_remotemd"
      "test_wms_130_remotemd"
      "test_wmts_example_informatievlaanderen"
      "test_opensearch_creodias"
    ]
    ++ lib.optionals stdenv.isDarwin [
      "test_ogcapi_processes_pygeoapi"
      "test_ogcapi_records_pycsw"
      "test_ogcapi_records_pygeoapi"
      "test_wms_getfeatureinfo_130"
  pytestFlagsArray = [
    # disable tests which require network access
    "-m 'not online'"
  ];

  meta = with lib; {