Skip to content

Commit

Permalink
Got rid of pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
DiddiZ committed May 27, 2023
1 parent 5cd7b9e commit 5782bc0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1,396 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,14 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- name: Install pipenv
run: pip install pipenv
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pipenv"
- name: Install dependencies
run: |
pipenv install --deploy --dev --python ${{ matrix.python-version }}
- name: Test with pytest
python -m pip install .
- name: Test with unittest
run: |
pipenv run python -m unittest discover -v -s "./tests" -p "*_test.py"
python -m unittest discover -v -s "./tests" -p "*_test.py"
25 changes: 0 additions & 25 deletions Pipfile

This file was deleted.

Loading

0 comments on commit 5782bc0

Please sign in to comment.