Skip to content

Commit

Permalink
add all dev deps to Pipfile
Browse files Browse the repository at this point in the history
Signed-off-by: Lucca Baumgärtner <[email protected]>
  • Loading branch information
luccalb committed Nov 3, 2023
1 parent 569eea4 commit 0fc78e2
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pipenv
pip install pipenv
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pipenv install --verbose
pipenv install --dev
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ verify_ssl = true
name = "pypi"

[dev-packages]
pytest = "==7.4.3"
pytest = "*"
pre-commit = "*"
flake8 = "*"

[packages]
numpy = "==1.26.1"
Expand Down
35 changes: 34 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0fc78e2

Please sign in to comment.