mirror of
https://github.com/umap-project/umap.git
synced 2025-05-17 19:21:50 +02:00
Compare commits
6 commits
2ff2ee29ed
...
3c38a5e55e
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3c38a5e55e | ||
![]() |
4430bddcc9 | ||
![]() |
9ba5dda507 | ||
![]() |
b15e333f6c | ||
![]() |
4ce8f6515d | ||
![]() |
dc5a3a6b62 |
2 changed files with 4 additions and 4 deletions
|
@ -44,7 +44,7 @@ dependencies = [
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
dev = [
|
dev = [
|
||||||
"hatch==1.14.0",
|
"hatch==1.14.0",
|
||||||
"ruff==0.9.1",
|
"ruff==0.9.2",
|
||||||
"djlint==1.36.4",
|
"djlint==1.36.4",
|
||||||
"mkdocs==1.6.1",
|
"mkdocs==1.6.1",
|
||||||
"mkdocs-material==9.5.49",
|
"mkdocs-material==9.5.49",
|
||||||
|
@ -61,7 +61,7 @@ test = [
|
||||||
"pytest-playwright==0.6.2",
|
"pytest-playwright==0.6.2",
|
||||||
"pytest-rerunfailures==15.0",
|
"pytest-rerunfailures==15.0",
|
||||||
"pytest-xdist>=3.5.0,<4",
|
"pytest-xdist>=3.5.0,<4",
|
||||||
"moto[s3]==5.0.25"
|
"moto[s3]==5.0.27"
|
||||||
]
|
]
|
||||||
docker = [
|
docker = [
|
||||||
"uwsgi==2.0.28",
|
"uwsgi==2.0.28",
|
||||||
|
|
|
@ -289,5 +289,5 @@ def test_should_remove_all_versions_on_delete(map, settings):
|
||||||
datalayer.geojson.storage.save(root / f"{path}.gz", ContentFile("{}"))
|
datalayer.geojson.storage.save(root / f"{path}.gz", ContentFile("{}"))
|
||||||
assert len(datalayer.geojson.storage.listdir(root)[1]) == 10 + before
|
assert len(datalayer.geojson.storage.listdir(root)[1]) == 10 + before
|
||||||
datalayer.delete()
|
datalayer.delete()
|
||||||
found = datalayer.geojson.storage.listdir(root)[1]
|
found = set(datalayer.geojson.storage.listdir(root)[1])
|
||||||
assert found == [other, f"{other}.gz"]
|
assert found == {other, f"{other}.gz"}
|
||||||
|
|
Loading…
Reference in a new issue