From 2e7c4a3cc0c5ffb60d1dc6549238d7b939b232e3 Mon Sep 17 00:00:00 2001 From: geistling <34081638+geistling@users.noreply.github.com> Date: Wed, 17 Jul 2024 11:07:12 -0400 Subject: [PATCH] comment out actions for flake 8 and import sorting --- .github/workflows/django.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index dab4853c9..1979d7fba 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -35,19 +35,19 @@ jobs: # pip install black # # format the files with black # black . - - name: Lint with flake8 - run: | - pip install flake8 - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Sort imports - run: | - pip install isort - # stop the build if there are Python syntax errors or undefined names - isort . - isort --check --diff . + # - name: Lint with flake8 + # run: | + # pip install flake8 + # # stop the build if there are Python syntax errors or undefined names + # flake8 . --count --select=E9,F63,F7 --show-source --statistics + # # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + # - name: Sort imports + # run: | + # pip install isort + # # stop the build if there are Python syntax errors or undefined names + # isort . + # isort --check --diff . - name: Build the images and start the containers run: | export GITHUB_WORKFLOW=True