diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 56864d6..47d0701 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,10 +9,6 @@ on: env: CCACHE_BASEDIR: ${{ github.workspace }} -permissions: - contents: read - actions: read - checks: write jobs: build-and-test: runs-on: ubuntu-latest @@ -48,11 +44,4 @@ jobs: - name: Unit Tests run: | cd ./build/${{ matrix.build_type }} - xvfb-run ctest . --output-on-failure - - - name: Unit Tests Report - uses: dorny/test-reporter@v2 - with: - name: "Unit Tests Report (${{ matrix.build_type }}, unity_build=${{ matrix.unity_build }})" - path: build/${{ matrix.build_type }}/TestResults/*.xml - reporter: java-junit \ No newline at end of file + xvfb-run ctest . --output-on-failure \ No newline at end of file diff --git a/Bigfoot/Tests/System/Time.cpp b/Bigfoot/Tests/System/Time.cpp index 6a9b602..cae0c3f 100644 --- a/Bigfoot/Tests/System/Time.cpp +++ b/Bigfoot/Tests/System/Time.cpp @@ -21,6 +21,7 @@ class TimeFixture: public ::testing::Test TEST_F(TimeFixture, Year_ShouldReturnTheYear) { EXPECT_EQ(m_time.Year(), 2026); + EXPECT_TRUE(false); } /****************************************************************************************/