Skip to content

Commit 4d77c3b

Browse files
committed
misc GHA updates
1 parent 3cdc51c commit 4d77c3b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build_test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,19 @@ jobs:
2121
python -m pip install --upgrade pip
2222
pip install flake8
2323
- name: Lint with flake8
24+
# TODO: fix linting issues and remove --exit-zero flag
2425
run: |
2526
# stop the build if there are Python syntax errors or undefined names
2627
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
2728
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
2829
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
2930
- name: Install requirements
3031
run: |
31-
pip install -r requirements.txt
32-
# TODO: update to latest packaging conventions
32+
pip install -r requirements.txt
3333
- name: Install package
34+
# TODO: update to latest packaging conventions
3435
run: |
3536
pip install -e .
36-
- name: Test with pytest
37+
- name: Run tests
3738
run: |
3839
python manage.py test --settings=segments.tests.settings

0 commit comments

Comments
 (0)