Skip to content

Commit c6b928c

Browse files
committed
openEO user defined process id is allowed to use uppercase
https://api.openeo.org/#tag/User-Defined-Processes/operation/validate-custom-process
1 parent be43f29 commit c6b928c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def repo(self) -> GithubAlgorithmRepository:
210210
def test_list_algorithms(self, repo):
211211
listing = repo.list_algorithms()
212212
assert listing
213-
assert all(re.fullmatch(r"[a-z0-9_]+", item) for item in listing)
213+
assert all(re.fullmatch(r"[a-zA-Z0-9_-]+", item) for item in listing)
214214

215215
def test_get_algorithm(self, repo):
216216
algorithm = repo.get_algorithm("max_ndvi_composite")

0 commit comments

Comments
 (0)