Skip to content

Commit

Permalink
Update tests target name in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkrupinski committed Jan 28, 2025
1 parent e14c079 commit 50ec3d1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion Tests/UnitTests/UnitTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@

#include "HudTests/BombStatusTests/BombStatusPanelTests.h"
#include "HudTests/BombStatusTests/BombStatusPanelManagerTests.h"
#include "Mocks/MockMemoryAllocator.h"

0 comments on commit 50ec3d1

Please sign in to comment.