aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-04 01:42:35 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-04 01:42:35 +0530
commita841189e2465033a0a8f32c1fc7280aaaad8a288 (patch)
treea7d6c770867045a0b9a7a2bbc0f931bc27d659e8 /.github
parent26c42dd3cba736938f4ec66cad394154ba1c1a83 (diff)
installing pipenv from curl
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/Codecov.yaml3
-rw-r--r--.github/workflows/Flask-Tests.yaml3
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/Codecov.yaml b/.github/workflows/Codecov.yaml
index e6549ed..b4872e5 100644
--- a/.github/workflows/Codecov.yaml
+++ b/.github/workflows/Codecov.yaml
@@ -23,8 +23,7 @@ jobs:
- name: Install Dependencies
run: |
- python -m pip install --upgrade pip
- pip install pipenv
+ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
pipenv install --dev
pipenv install pytest-cov
diff --git a/.github/workflows/Flask-Tests.yaml b/.github/workflows/Flask-Tests.yaml
index 1da7fd6..cce4ed1 100644
--- a/.github/workflows/Flask-Tests.yaml
+++ b/.github/workflows/Flask-Tests.yaml
@@ -24,8 +24,7 @@ jobs:
- name: Install Dependencies
run: |
- python -m pip install --upgrade pip
- pip install pyenv
+ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
pipenv install --dev
- name: Run Tests