Skip to content

Commit

Permalink
Run pre-commit to clean up after PR #45
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Feb 9, 2024
1 parent fb36b9e commit f7d32b7
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 30 deletions.
35 changes: 15 additions & 20 deletions src/openeo_test_suite/lib/compliance_util.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,28 @@
from pathlib import Path
import pathlib
from typing import Iterator, Union
from openapi_core import Spec
import yaml
import json
import logging
import os
import pathlib
import time
import uuid
from pathlib import Path
from typing import Iterator, Union

import requests
import time
import logging
import openeo_test_suite
import yaml
from openapi_core import Spec, V31ResponseValidator, validate_response
from openapi_core.contrib.requests import (
RequestsOpenAPIRequest,
RequestsOpenAPIResponse,
)
from requests import Request, Session

import openeo_test_suite
from openeo_test_suite.lib.backend_under_test import (
get_backend_url,
get_backend_under_test,
get_backend_url,
)


from openapi_core import validate_response
from openapi_core.contrib.requests import RequestsOpenAPIRequest
from openapi_core.contrib.requests import RequestsOpenAPIResponse
from openapi_core import V31ResponseValidator


from typing import Union
import requests
from requests import Request, Session


def test_endpoint(
base_url: str,
endpoint_path: str,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{}
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@
"title": "HTML version of the processes"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,4 @@
"plan": "free",
"budget": 100,
"log_level": "warning"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
},
"plan": "free",
"budget": 100
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,4 @@
"log_level": "warning",
"property1": null,
"property2": null
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@
"result": true
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@
"result": true
}
}
}
}
6 changes: 4 additions & 2 deletions src/openeo_test_suite/tests/general/test_compliance.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from openapi_core import Spec
import uuid

import pytest
import requests
from openapi_core import Spec

import openeo_test_suite.lib.compliance_util as conformance_util
import uuid


@pytest.fixture(scope="session")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import logging
from typing import List

import pytest

from openeo_test_suite.lib.process_registry import ProcessData
from openeo_test_suite.lib.process_selection import get_selected_processes
import logging


@pytest.fixture(scope="module")
Expand Down

0 comments on commit f7d32b7

Please sign in to comment.