diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-05-09 23:18:55 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2020-05-09 17:41:57 -0700 |
commit | 8c120304987af404e2493d18b6313af28596d4d7 (patch) | |
tree | d62742838c0714f6ee8a06ca5fa35c8bc5a41185 | |
parent | 29105da445387d7c46952dfc0f06f4d308cc1fb3 (diff) | |
download | spack-8c120304987af404e2493d18b6313af28596d4d7.tar.gz spack-8c120304987af404e2493d18b6313af28596d4d7.tar.bz2 spack-8c120304987af404e2493d18b6313af28596d4d7.tar.xz spack-8c120304987af404e2493d18b6313af28596d4d7.zip |
Fix MacOS tests on develop
The -u option allows to update the current head,
so tests won't fail if we are on develop
-rw-r--r-- | .github/workflows/macos_unit_tests.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos_unit_tests.yaml b/.github/workflows/macos_unit_tests.yaml index f903daa034..da970edc7a 100644 --- a/.github/workflows/macos_unit_tests.yaml +++ b/.github/workflows/macos_unit_tests.yaml @@ -36,7 +36,7 @@ jobs: - name: Run unit tests run: | git --version - git fetch origin develop:develop + git fetch -u origin develop:develop . share/spack/setup-env.sh coverage run $(which spack) test coverage combine |