Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devel #51

Merged
merged 3 commits into from
Jan 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,19 @@ upgrade: clean ## upgrade all dependencies
pip install --upgrade --pre -rrequirements.txt

clean-build: ## remove build artifacts
rm -fr build/
rm -fr dist/
rm -fr .eggs/
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/
rm -frv build/
rm -frv dist/
rm -frv .eggs/
rm -frv .tox/
rm -fv .coverage
rm -frv htmlcov/
rm -rfv */__pycache__
rm -f corbertura.xml
rm -fr .pytest_cache
rm -rf *.egg-info
rm -fv corbertura.xml
rm -frv .pytest_cache
rm -rfv *.egg-info
rm -rfv tests/TESTINGDIR

lint: ## run linters on codebase
pip install --upgrade --force-reinstall --pre --no-cache torrentfile
isort torrentfileQt tests
pyroma .
prospector torrentfileQt
prospector tests
Expand Down
Loading