From 5e0837ae3584628c9a6ee8774af50cfc1617a23f Mon Sep 17 00:00:00 2001 From: Vasily Shamporov Date: Tue, 24 Oct 2023 12:52:00 +0200 Subject: [PATCH] Do not test common code in backend-specific test targets (#2212) ### Changes As stated in the title ### Reason for changes Common code has an own target now which is run using GH actions, no reason to run these tests additionally in the backend-specific targets. ### Related tickets TBA ### Tests Existing precommit scope --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 58d2121d6d3..8b4c079780e 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ install-tensorflow-dev: install-tensorflow-test install-pre-commit install-pylin pip install -r examples/post_training_quantization/tensorflow/mobilenet_v2/requirements.txt test-tensorflow: - pytest ${COVERAGE_ARGS} tests/common tests/tensorflow \ + pytest ${COVERAGE_ARGS} tests/tensorflow \ --junitxml ${JUNITXML_PATH} \ $(DATA_ARG) @@ -128,7 +128,7 @@ install-torch-dev: install-torch-test install-pre-commit install-pylint pip install -r examples/post_training_quantization/torch/ssd300_vgg16/requirements.txt test-torch: - pytest ${COVERAGE_ARGS} tests/common tests/torch -m "not weekly and not nightly" --junitxml ${JUNITXML_PATH} $(DATA_ARG) + pytest ${COVERAGE_ARGS} tests/torch -m "not weekly and not nightly" --junitxml ${JUNITXML_PATH} $(DATA_ARG) test-torch-nightly: pytest ${COVERAGE_ARGS} tests/torch -m nightly --junitxml ${JUNITXML_PATH} $(DATA_ARG)