Skip to content

Commit

Permalink
BLD: Remove remaining references to flake8 from test run workflow sin…
Browse files Browse the repository at this point in the history
…ce this is handled in the pre-commit now
  • Loading branch information
jbellister-slac committed Nov 21, 2023
1 parent 27ec4c2 commit 647f7a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will install pydm dependencies, lint with flake8, and run the test suite, for all combinations
# This workflow will install pydm dependencies and run the test suite for all combinations
# of operating systems and version numbers specified in the matrix

name: Build Status
Expand Down Expand Up @@ -39,10 +39,10 @@ jobs:
shell: bash -el {0}
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
mamba install flake8 pyqt=${{ matrix.pyqt-version }}
mamba install pyqt=${{ matrix.pyqt-version }}
mamba install --file requirements.txt --file windows-dev-requirements.txt
else
mamba install flake8 pyqt=${{ matrix.pyqt-version }} $(cat requirements.txt dev-requirements.txt)
mamba install pyqt=${{ matrix.pyqt-version }} $(cat requirements.txt dev-requirements.txt)
fi
- name: Install packages for testing a pyqt app on linux
shell: bash -el {0}
Expand Down

0 comments on commit 647f7a9

Please sign in to comment.