From d2a48306342bcbaabd1d95dff44a027750ad673b 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 a02899b8..f102aa90 100644 --- a/tests/python/rest_api/test_tasks.py +++ b/tests/python/rest_api/test_tasks.py @@ -745,7 +745,7 @@ class TestPostTaskData: f"{tmp_dir}:/local", "--entrypoint", "python3", - "cvat/server", + "cvat/server:dev", "utils/dataset_manifest/create.py", "--output-dir", "/local",