Skip to content

Commit

Permalink
Use absolute path in defaults.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 15, 2023
1 parent 1edc5b5 commit 32fc374
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/UDKTests/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from pathlib import Path

_FILE_DIR = Path(__file__).parent

UDK_TEST_TIMEOUT = 300
UDK_LITE_TAG = "1.0.1"
UDK_LITE_ROOT = "./UDK-Lite/"
UDK_LITE_RELEASE_URL = (f"https://github.com/tuokri/UDK-Lite/releases/download/{UDK_LITE_TAG}/UDK"
f"-Lite-{UDK_LITE_TAG}.7z")
USCRIPT_MESSAGE_FILES = "../out/*.uc"
USCRIPT_MESSAGE_FILES = _FILE_DIR / "../out/*.uc"

0 comments on commit 32fc374

Please sign in to comment.