Skip to content

Commit

Permalink
Update and rename python-app.yml to pytest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chefgs committed Aug 9, 2023
1 parent bf19a3c commit 1871e6d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install pytest # flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
working-directory: ./
# - name: Lint with flake8
# run: |
# # stop the build if there are Python syntax errors or undefined names
Expand All @@ -36,3 +37,4 @@ jobs:
- name: Test with pytest
run: |
pytest
working-directory: ./

0 comments on commit 1871e6d

Please sign in to comment.