Skip to content

Commit

Permalink
use pip to install test depends.
Browse files Browse the repository at this point in the history
  • Loading branch information
dougransom authored Oct 13, 2023
1 parent 8912d3e commit fb497bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install lint dependencies
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
- name: Linting with flake8
python -m pip install -e .[test]
- name: Linting with flake8
run: |
#stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
Expand Down

0 comments on commit fb497bf

Please sign in to comment.