diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2023-04-12 19:28:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 19:28:55 +0200 |
commit | a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f (patch) | |
tree | 7c9317a69dd774a2c82b45049cdf22c5f658e2bb /.github/workflows/unit_tests.yaml | |
parent | e08c02c471bfe1442a1b655effcf70fa3349f97d (diff) | |
download | spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.tar.gz spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.tar.bz2 spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.tar.xz spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.zip |
Stop installing codecov from pip (#36804)
It shouldn't be needed since we use Codecov's Github action
See here for more information https://community.codecov.com/t/codecov-yanked-from-pypi-all-versions/4259
Diffstat (limited to '.github/workflows/unit_tests.yaml')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index ffaa83cb9a..ace8848554 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -62,7 +62,7 @@ jobs: cmake bison libbison-dev kcov - name: Install Python packages run: | - pip install --upgrade pip six setuptools pytest codecov[toml] pytest-xdist pytest-cov + pip install --upgrade pip six setuptools pytest pytest-xdist pytest-cov pip install --upgrade flake8 "isort>=4.3.5" "mypy>=0.900" "click" "black" - name: Setup git configuration run: | @@ -107,7 +107,7 @@ jobs: sudo apt-get install -y coreutils kcov csh zsh tcsh fish dash bash - name: Install Python packages run: | - pip install --upgrade pip six setuptools pytest codecov coverage[toml] pytest-xdist + pip install --upgrade pip six setuptools pytest coverage[toml] pytest-xdist - name: Setup git configuration run: | # Need this for the git tests to succeed. @@ -163,7 +163,7 @@ jobs: sudo apt-get -y install coreutils cvs gfortran graphviz gnupg2 mercurial ninja-build kcov - name: Install Python packages run: | - pip install --upgrade pip six setuptools pytest codecov coverage[toml] pytest-cov clingo pytest-xdist + pip install --upgrade pip six setuptools pytest coverage[toml] pytest-cov clingo pytest-xdist - name: Setup git configuration run: | # Need this for the git tests to succeed. @@ -194,7 +194,7 @@ jobs: - name: Install Python packages run: | pip install --upgrade pip six setuptools - pip install --upgrade pytest codecov coverage[toml] pytest-xdist pytest-cov + pip install --upgrade pytest coverage[toml] pytest-xdist pytest-cov - name: Setup Homebrew packages run: | brew install dash fish gcc gnupg2 kcov |