Skip to content

Commit

Permalink
🗑️ Unused aliases are removed
Browse files Browse the repository at this point in the history
  • Loading branch information
parfeniukink committed Jun 27, 2024
1 parent 0bec1fd commit 6f1443c
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
run:
python -m src.guidellm.main

install:
pip install -r requirements.txt


install-dev:
pip install -e .[dev]


quality:
ruff check src tests
isort --check-only src tests
flake8 src tests --max-line-length 88
mypy src


style:
ruff format src tests
isort src tests
flake8 src tests
python -m ruff format src tests
python -m isort src tests
python -m flake8 src tests

# test:
# pytest tests

build:
python setup.py sdist bdist_wheel


clean:
rm -rf __pycache__
rm -rf build
Expand All @@ -35,10 +33,4 @@ clean:
rm -rf .pytest_cache


fix:
python -m black src tests
python -m isort src tests
python -m ruff format src tests


.PHONY: run install install-dev quality style test test-unit test-integration test-e2e test-smoke test-sanity test-regression build clean fix
.PHONY: install install-dev quality style build clean

0 comments on commit 6f1443c

Please sign in to comment.