From 2bcd760c46ffe8d71bd53e452db71f4590968aaf Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Wed, 20 Mar 2024 12:31:12 -0700 Subject: [PATCH] robocorp[patch]: run integration tests on release (#19358) --- libs/partners/robocorp/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libs/partners/robocorp/Makefile b/libs/partners/robocorp/Makefile index a8d7de28088..806fd2629c0 100644 --- a/libs/partners/robocorp/Makefile +++ b/libs/partners/robocorp/Makefile @@ -5,11 +5,9 @@ all: help # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ +integration_test integration_tests: TEST_FILE=tests/integration_tests/ -test: - poetry run pytest $(TEST_FILE) - -tests: +test tests integration_test integration_tests: poetry run pytest $(TEST_FILE)