aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/Flask-Tests.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/Flask-Tests.yaml')
-rw-r--r--.github/workflows/Flask-Tests.yaml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/Flask-Tests.yaml b/.github/workflows/Flask-Tests.yaml
index 160ddfe..1032f0c 100644
--- a/.github/workflows/Flask-Tests.yaml
+++ b/.github/workflows/Flask-Tests.yaml
@@ -23,11 +23,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
- uses: VaultVulp/action-pipenv@v2.0.1
- with:
- command: install --dev
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
- name: Run Tests
- uses: VaultVulp/action-pipenv@v2.0.1
- with:
- command: run tests \ No newline at end of file
+ run: |
+ python -m pytest \ No newline at end of file