diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-03-09 15:39:18 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-03-09 15:39:18 -0500 |
commit | 1f05fbe3144fb444d71ecdc81313b10ab47ebd4a (patch) | |
tree | 6f457e9f42efcd5107368a2e07d96a87ebaa6946 | |
parent | 925fa561594ee52b84f70690359cae7d85423116 (diff) | |
download | log_raider-jhunkeler-patch-1.tar.gz |
No need for requirements.txtjhunkeler-patch-1
-rw-r--r-- | .github/workflows/python-package.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5fde531..bbde7a1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -27,7 +27,7 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install flake8 pytest - if [ -f requirements.txt ]; then pip install .[test]; fi + python -m pip install .[test] - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names |