Skip to content

Commit

Permalink
Break up req installs for better debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
hbldh committed May 20, 2020
1 parent 9eea0e1 commit db0875e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ jobs:
- name: Install Bluez on Ubuntu
run: sudo apt install -y bluez
if: ${{ matrix.os == 'ubuntu-latest'}}
- name: Upgrade pip. setuptools and wheel
run: python -m pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
run: pip install -r requirements.txt
- name: Install develoment dependencies
run: pip install -r requirements_dev.txti
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit db0875e

Please sign in to comment.