Skip to content

Commit

Permalink
reorder justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelkroeker committed Nov 14, 2024
1 parent e3d6e83 commit ae86147
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
alias t := test
alias p := profiler
alias bp := benchmark_parallel
alias bt := benchmark_threaded
alias ba := benchmark_async

default:
@just --list

alias t := test
test:
poetry run pytest --cov=dictdatabase --cov-report term-missing
rm ./.coverage

alias p := profiler
profiler:
poetry run python profiler.py

alias bp := benchmark_parallel
benchmark_parallel:
poetry run python tests/benchmark/run_parallel.py

alias bt := benchmark_threaded
benchmark_threaded:
poetry run python tests/benchmark/run_threaded.py

alias ba := benchmark_async
benchmark_async:
poetry run python tests/benchmark/run_async.py

0 comments on commit ae86147

Please sign in to comment.