From 7e61336ff1fd06a1dadb84213fc2cb534b52a17d Mon Sep 17 00:00:00 2001 From: Maxim Zhiltsov Date: Sat, 31 Dec 2022 09:09:33 +0300 Subject: [PATCH] Fix docker command in tests (#5538) This PR fixes a problem with local running of tests introduced in #5498. When running tests locally, there can be multiple tags available, while we need the `dev` tag, which should be created right before tests are executed. - Added the missing image tag in the docker run command --- tests/python/rest_api/test_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/rest_api/test_tasks.py b/tests/python/rest_api/test_tasks.py index a02899b86648..f102aa900b7e 100644 --- a/tests/python/rest_api/test_tasks.py +++ b/tests/python/rest_api/test_tasks.py @@ -745,7 +745,7 @@ def test_create_task_with_file_pattern( f"{tmp_dir}:/local", "--entrypoint", "python3", - "cvat/server", + "cvat/server:dev", "utils/dataset_manifest/create.py", "--output-dir", "/local",