Skip to content

Commit

Permalink
fix ruff command
Browse files Browse the repository at this point in the history
  • Loading branch information
rsalmei committed Oct 26, 2024
1 parent eb9ca32 commit ec9036d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# coverage related

cov := "--cov=alive_progress --cov-branch --cov-report=term-missing"

all:
Expand All @@ -16,7 +17,7 @@ clean-pyc:
find . -type f -name *.pyc -delete

lint:
ruff alive_progress --line-length 100
ruff check alive_progress --line-length 100

build: lint clean
python setup.py sdist bdist_wheel
Expand All @@ -31,10 +32,10 @@ tag:
git push origin $tag
test:
pytest {{cov}}
pytest {{ cov }}

ptw:
ptw -- {{cov}}
ptw -- {{ cov }}

cov-report:
coverage report -m

0 comments on commit ec9036d

Please sign in to comment.