diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c417e02f..656c0044 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,4 +37,4 @@ jobs: env: HF_TOKEN: ${{ secrets.HF_TOKEN }} run: | - just test-verbose + just test diff --git a/Justfile b/Justfile index 5fdd9b0d..fba63f99 100644 --- a/Justfile +++ b/Justfile @@ -33,9 +33,6 @@ check: test *ARGS=".": . ./activate ${VENV_NAME} && cd ${PROJECT_DIR} && pytest --ignore third_party {{ARGS}} -test-verbose *ARGS=".": - . ./activate ${VENV_NAME} && cd ${PROJECT_DIR} && pytest --ignore third_party {{ARGS}} -vv --log-cli-level=INFO {{ARGS}} - @python *FLAGS: . ./activate ${VENV_NAME} && python {{FLAGS}}