cli[patch]: add integration tests to default makefile (#16479)

This commit is contained in:
Erick Friis 2024-01-23 16:09:16 -07:00 committed by GitHub
parent 51c8ef6af4
commit afb25eeec4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,9 @@ all: help
# Define a variable for the test file path. # Define a variable for the test file path.
TEST_FILE ?= tests/unit_tests/ TEST_FILE ?= tests/unit_tests/
test: integration_tests: TEST_FILE = tests/integration_tests/
test integration_tests:
poetry run pytest $(TEST_FILE) poetry run pytest $(TEST_FILE)
tests: tests: