From 57c6c2622f97026a88131124f43a3d579c4522f7 Mon Sep 17 00:00:00 2001 From: Jack Yao Date: Wed, 17 Jul 2024 06:33:43 -0500 Subject: [PATCH] Added UE_PROJECT_FILE env to tests --- docs/contributing/development.md | 2 +- tests/run_tests.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/contributing/development.md b/docs/contributing/development.md index 33dee655..33f01cf0 100644 --- a/docs/contributing/development.md +++ b/docs/contributing/development.md @@ -33,7 +33,7 @@ git checkout some-task-branch ``` ## VSCode -The repo contains the tasks, launch actions, and settings for for developing with vscode. To get setup do the following: +The repo contains the tasks, launch actions, and settings for developing with vscode. To get setup do the following: ### Setup 1. Install the VSCode profile under `scripts/resources/profiles/dev.code-profile`. You can do this by typing `> Profile Import Profile` in the command pallette. This will give you all the vscode extensions you will need. diff --git a/tests/run_tests.py b/tests/run_tests.py index b04e3715..154569da 100644 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -46,6 +46,7 @@ environment = { 'SEND2UE_DEV': '1', 'UE2RIGIFY_DEV': '1', + 'UE_PROJECT_FILE': '/tmp/blender_tools/tests/test_files/unreal_projects/test01/test01.uproject', 'BLENDER_DEBUG_PORT': BLENDER_CONTAINER_DEBUG_PORT, 'UNREAL_DEBUG_PORT': UNREAL_CONTAINER_DEBUG_PORT, 'BLENDER_ADDONS': BLENDER_ADDONS,