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
main
Maxim Zhiltsov 3 years ago committed by GitHub
parent ce37be1f60
commit d2a4830634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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",

Loading…
Cancel
Save