Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
azhavoro committed Oct 2, 2023
1 parent 24f2d7f commit 2c2f4f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Incorrectly determined video frame count when the video contains an MP4 edit list
(<https://github.com/opencv/cvat/pull/6929>)
- Internal server error when retrieving data from CS and cache=True
(<https://github.com/opencv/cvat/pull/6932>)

### Security

Expand Down
11 changes: 7 additions & 4 deletions tests/python/rest_api/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1419,21 +1419,25 @@ def test_create_task_with_file_pattern(
assert "No media data found" in status.message

@pytest.mark.with_external_services
@pytest.mark.parametrize("cloud_storage_id, org", [(1, ""),])
@pytest.mark.parametrize(
"cloud_storage_id, org",
[
(1, ""),
],
)
def test_create_task_with_cloud_storage_and_retrieve_data(
self,
cloud_storage_id,
cloud_storages,
request,
org,
):

cloud_storage = cloud_storages[cloud_storage_id]
task_id, _ = self._create_task_with_cloud_data(
request=request,
cloud_storage=cloud_storage,
use_manifest=True,
use_cache = True,
use_cache=True,
server_files=[],
org=org,
)
Expand All @@ -1444,7 +1448,6 @@ def test_create_task_with_cloud_storage_and_retrieve_data(
)
assert response.status == HTTPStatus.OK


def test_can_specify_file_job_mapping(self):
task_spec = {
"name": f"test file-job mapping",
Expand Down

0 comments on commit 2c2f4f8

Please sign in to comment.