diff --git a/.github/workflows/osx-tests.yml b/.github/workflows/osx-tests.yml index 68dcd1960a3..841627aa447 100644 --- a/.github/workflows/osx-tests.yml +++ b/.github/workflows/osx-tests.yml @@ -56,7 +56,7 @@ jobs: id: cache-cmake uses: actions/cache@v4 with: - path: ${{ env.HOME }}/Applications/CMake/3.15.7 + path: ${{ runner.home }}/Applications/CMake/3.15.7 key: conan-cmake-3.15 - name: Build CMake old versions not available for arm @@ -110,14 +110,14 @@ jobs: chmod +x ${HOME}/Applications/bazel/${version}/bazel done - - name: Run Tests - run: | - if [ "${{ matrix.test-type }}" == "unittests" ]; then - pytest test/unittests --durations=20 - elif [ "${{ matrix.test-type }}" == "integration" ]; then - pytest test/integration --durations=20 - elif [ "${{ matrix.test-type }}" == "functional" ]; then - export PATH=${HOME}/Applications/CMake/3.15.7/bin:$PATH:/usr/local/bin:/opt/homebrew/bin:/usr/bin:/bin:/usr/sbin:/sbin - cmake --version - #pytest test/functional -v --durations=20 - fi + # - name: Run Tests + # run: | + # if [ "${{ matrix.test-type }}" == "unittests" ]; then + # pytest test/unittests --durations=20 + # elif [ "${{ matrix.test-type }}" == "integration" ]; then + # pytest test/integration --durations=20 + # elif [ "${{ matrix.test-type }}" == "functional" ]; then + # export PATH=${HOME}/Applications/CMake/3.15.7/bin:$PATH:/usr/local/bin:/opt/homebrew/bin:/usr/bin:/bin:/usr/sbin:/sbin + # cmake --version + # pytest test/functional -v --durations=20 + # fi