From 50ec3d14ccedb9097a2e035fb8f3988a930af1fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Krupi=C5=84ski?= Date: Tue, 28 Jan 2025 19:37:00 +0100 Subject: [PATCH] Update tests target name in workflows --- .github/workflows/linux.yml | 2 +- .github/workflows/windows.yml | 2 +- Tests/UnitTests/UnitTests.cpp | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 00303724b0d..2702c75c3b2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -41,6 +41,6 @@ jobs: - name: build source run: cmake --build build --target Osiris -j $(nproc --all) - name: build unit tests - run: cmake --build build --target Tests -j $(nproc --all) + run: cmake --build build --target UnitTests -j $(nproc --all) - name: run unit tests run: ctest --test-dir build --output-on-failure --schedule-random -j $(nproc --all) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ee75a394bbd..d1b8b70e75c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -36,6 +36,6 @@ jobs: - name: build source run: cmake --build build --target Osiris --config ${{ matrix.configuration }} - name: build unit tests - run: cmake --build build --target Tests --config ${{ matrix.configuration }} + run: cmake --build build --target UnitTests --config ${{ matrix.configuration }} - name: run unit tests run: ctest --test-dir build --output-on-failure --schedule-random -j $env:NUMBER_OF_PROCESSORS diff --git a/Tests/UnitTests/UnitTests.cpp b/Tests/UnitTests/UnitTests.cpp index 0bdacdcf04c..f2825b5ea97 100644 --- a/Tests/UnitTests/UnitTests.cpp +++ b/Tests/UnitTests/UnitTests.cpp @@ -6,4 +6,3 @@ #include "HudTests/BombStatusTests/BombStatusPanelTests.h" #include "HudTests/BombStatusTests/BombStatusPanelManagerTests.h" -#include "Mocks/MockMemoryAllocator.h" \ No newline at end of file