Skip to content

Commit

Permalink
fix: make quality no longer expects the dir to exist
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemontoya committed Apr 4, 2024
1 parent e16cef9 commit f30fe1f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,10 @@ upgrade: ## update the requirements/*.txt files with the latest packages satisf
$(PIP_COMPILE) -o requirements/dev.txt requirements/dev.in

quality: ## check coding style with pycodestyle and pylint
touch tests/__init__.py
pylint openedx_filters tests test_utils *.py
rm tests/__init__.py
pycodestyle openedx_filters tests *.py
pydocstyle openedx_filters tests *.py
isort --check-only --diff --recursive tests test_utils openedx_filters *.py test_settings.py
pylint openedx_filters test_utils *.py
pycodestyle openedx_filters *.py
pydocstyle openedx_filters *.py
isort --check-only --diff --recursive test_utils openedx_filters *.py test_settings.py
python setup.py bdist_wheel
twine check dist/*
make selfcheck
Expand Down

0 comments on commit f30fe1f

Please sign in to comment.