Skip to content

Commit

Permalink
trying to take out the workflow change so others are not affected
Browse files Browse the repository at this point in the history
  • Loading branch information
AnEnglishmanInNorway committed Jul 10, 2024
1 parent 9e5aeb1 commit 529815c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10.14
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.10.14
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -24,7 +24,7 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide, but we now
# accept 160 simply because it seems that at least some contributors use longer lines
flake8 . --count --exit-zero --max-complexity=20 --max-line-length=160 --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pip install pytest
Expand Down

0 comments on commit 529815c

Please sign in to comment.